mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-14 14:24:10 +02:00
Fixed some IDE issues
Fixed some issues related to creating new projects and workspace Added 'Refresh' option to project Fixed auto-include refresh Fixed folder rename Fixed EOF issue involving DbgModule string table
This commit is contained in:
parent
8a02874b51
commit
0ce6e44523
14 changed files with 374 additions and 163 deletions
|
@ -71,6 +71,15 @@ namespace IDE
|
|||
return true;
|
||||
}
|
||||
|
||||
public static bool IsDirectoryEmpty(StringView dirPath)
|
||||
{
|
||||
for (let entry in Directory.Enumerate(scope String()..AppendF("{}/*.*", dirPath), .Directories | .Files))
|
||||
{
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
public static bool FixFilePath(String filePath)
|
||||
{
|
||||
return FixFilePath(filePath, cNativeSlash, cOtherSlash);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue