|
enum | FileFuncFlags : uint {
FO_MOVE = 0x1
, FO_COPY = 0x2
, FO_DELETE = 0x3
, FO_RENAME = 0x4
,
FO_MOVE = 0x1
, FO_COPY = 0x2
, FO_DELETE = 0x3
, FO_RENAME = 0x4
} |
|
enum | FILEOP_FLAGS : ushort {
FOF_MULTIDESTFILES = 0x1
, FOF_CONFIRMMOUSE = 0x2
, FOF_SILENT = 0x4
, FOF_RENAMEONCOLLISION = 0x8
,
FOF_NOCONFIRMATION = 0x10
, FOF_WANTMAPPINGHANDLE = 0x20
, FOF_ALLOWUNDO = 0x40
, FOF_FILESONLY = 0x80
,
FOF_SIMPLEPROGRESS = 0x100
, FOF_NOCONFIRMMKDIR = 0x200
, FOF_NOERRORUI = 0x400
, FOF_NOCOPYSECURITYATTRIBS = 0x800
,
FOF_NORECURSION = 0x1000
, FOF_NO_CONNECTED_ELEMENTS = 0x2000
, FOF_WANTNUKEWARNING = 0x4000
, FOF_NORECURSEREPARSE = 0x8000
,
FOF_MULTIDESTFILES = 0x1
, FOF_CONFIRMMOUSE = 0x2
, FOF_SILENT = 0x4
, FOF_RENAMEONCOLLISION = 0x8
,
FOF_NOCONFIRMATION = 0x10
, FOF_WANTMAPPINGHANDLE = 0x20
, FOF_ALLOWUNDO = 0x40
, FOF_FILESONLY = 0x80
,
FOF_SIMPLEPROGRESS = 0x100
, FOF_NOCONFIRMMKDIR = 0x200
, FOF_NOERRORUI = 0x400
, FOF_NOCOPYSECURITYATTRIBS = 0x800
,
FOF_NORECURSION = 0x1000
, FOF_NO_CONNECTED_ELEMENTS = 0x2000
, FOF_WANTNUKEWARNING = 0x4000
, FOF_NORECURSEREPARSE = 0x8000
} |
|
enum | FileFuncFlags : uint {
FO_MOVE = 0x1
, FO_COPY = 0x2
, FO_DELETE = 0x3
, FO_RENAME = 0x4
,
FO_MOVE = 0x1
, FO_COPY = 0x2
, FO_DELETE = 0x3
, FO_RENAME = 0x4
} |
| File operation type More...
|
|
enum | FILEOP_FLAGS : ushort {
FOF_MULTIDESTFILES = 0x1
, FOF_CONFIRMMOUSE = 0x2
, FOF_SILENT = 0x4
, FOF_RENAMEONCOLLISION = 0x8
,
FOF_NOCONFIRMATION = 0x10
, FOF_WANTMAPPINGHANDLE = 0x20
, FOF_ALLOWUNDO = 0x40
, FOF_FILESONLY = 0x80
,
FOF_SIMPLEPROGRESS = 0x100
, FOF_NOCONFIRMMKDIR = 0x200
, FOF_NOERRORUI = 0x400
, FOF_NOCOPYSECURITYATTRIBS = 0x800
,
FOF_NORECURSION = 0x1000
, FOF_NO_CONNECTED_ELEMENTS = 0x2000
, FOF_WANTNUKEWARNING = 0x4000
, FOF_NORECURSEREPARSE = 0x8000
,
FOF_MULTIDESTFILES = 0x1
, FOF_CONFIRMMOUSE = 0x2
, FOF_SILENT = 0x4
, FOF_RENAMEONCOLLISION = 0x8
,
FOF_NOCONFIRMATION = 0x10
, FOF_WANTMAPPINGHANDLE = 0x20
, FOF_ALLOWUNDO = 0x40
, FOF_FILESONLY = 0x80
,
FOF_SIMPLEPROGRESS = 0x100
, FOF_NOCONFIRMMKDIR = 0x200
, FOF_NOERRORUI = 0x400
, FOF_NOCOPYSECURITYATTRIBS = 0x800
,
FOF_NORECURSION = 0x1000
, FOF_NO_CONNECTED_ELEMENTS = 0x2000
, FOF_WANTNUKEWARNING = 0x4000
, FOF_NORECURSEREPARSE = 0x8000
} |
| File operation flag More...
|
|
|
string | getFileName (string path) |
|
string | getFileNameWithoutExtension (string path) |
|
virtual bool | exists (string path) |
|
virtual StreamReader | getStreamReader (string path, Encoding encoding=null) |
|
virtual string[] | getDirectories (string path) |
|
virtual string[] | getDirectories (string path, string pattern, SearchOption searchOption) |
|
virtual bool | dirExists (string path) |
|
virtual string | getDirName (string path) |
|
virtual string[] | getFiles (string path) |
|
virtual string[] | getFiles (string path, string pattern, SearchOption searchOption=SearchOption.TopDirectoryOnly) |
|
virtual Stream | getFileStream (string path) |
|
string | getFileName (string path) |
|
string | getFileNameWithoutExtension (string path) |
|
virtual bool | exists (string path) |
|
virtual StreamReader | getStreamReader (string path, Encoding encoding=null) |
|
virtual string[] | getDirectories (string path) |
|
virtual string[] | getDirectories (string path, string pattern, SearchOption searchOption) |
|
virtual bool | dirExists (string path) |
|
virtual string | getDirName (string path) |
|
virtual string[] | getFiles (string path) |
|
virtual string[] | getFiles (string path, string pattern, SearchOption searchOption=SearchOption.TopDirectoryOnly) |
|
virtual Stream | getFileStream (string path) |
|
|
static void | copyFile (IntPtr handle, List< string > srcList, List< string > destList) |
|
static void | copyFile (IntPtr handle, string src, string dest) |
|
static void | initialize () |
|
static string | GetFullPath (string path) |
|
static void | copyFile (IntPtr handle, List< string > srcList, List< string > destList) |
|
static void | copyFile (IntPtr handle, string src, string dest) |
|
static void | deleteFile (IntPtr handle, List< string > deleteList, bool isConfirm) |
|
static void | initialize () |
|
static bool | IsDefaultCheckFile (string path) |
|
static MemoryStream | getMemoryStream (string path) |
|
static string | GetFullPath (string path, bool inReturnCurrentFolderOnError=true) |
| get full path of path More...
|
|
static bool | Exists (string inPath) |
| File existence confirmation (engine playback supported) More...
|
|
static string | CreateNewFilePath (string inFolderName, string inFileName) |
| Create new file name More...
|
|
static string | CreateTempDir () |
| Create temporary folder More...
|
|
static string | getValidFileName (string name) |
| Convert the specified string to a valid string as a file name More...
|
|
Utility class for file operations