コード例 #1
0
ファイル: EntryTypes.cs プロジェクト: madforumz/XbxEditor
 public bool NewFolder(string FolderName)
 {
     Write w = new Write(Drive);
     return w.NewFolder(FolderName, this);
 }
コード例 #2
0
ファイル: EntryTypes.cs プロジェクト: madforumz/XbxEditor
 public bool InjectFolder(string FolderPath)
 {
     Write w = new Write(Drive);
     return w.NewFolder(FolderPath, this);
 }