System.IO.File File java.io.File System.String fileName java.io.File new File(${fileName}) System.IO.StreamWriter CreateText System.String path java.io.* java.nio.charset.Charset new BufferedWriter(new OutputStreamWriter(new FileOutputStream(${path}), Charset.forName("UTF-8"))) System.IO.StreamWriter Create System.String path java.io.* new BufferedOutputStream(new FileOutputStream(${path})) System.IO.Stream OpenRead System.String path java.io.FileInputStream new FileInputStream(${path}) System.Void Delete System.String path java.io.File (new File(${path})).delete() System.Boolean Exists System.String path java.io.File (new File(${path})).exists() System.Void Copy System.String sourceFileName System.String destFileName RusticiSoftware.System.IO.FileSupport FileSupport.copyFile(${sourceFileName}, ${destFileName}, true) System.Void Copy System.String sourceFileName System.String destFileName System.Boolean overwrite RusticiSoftware.System.IO.FileSupport FileSupport.copyFile(${sourceFileName}, ${destFileName}, ${overwrite}) System.Void Move System.String sourceFileName System.String destFileName java.io.File (new File(${sourceFileName})).renameTo(new File(${destFileName})) System.Void SetAttributes System.String sourceFileName System.Object attributes /* Cannot set file attributes from Java - File.SetAttributes(${sourceFileName}, ${attributes}) */ System.Enum GetAttributes System.String sourceFileName /* Cannot get file attributes from Java - File.GetAttributes(${sourceFileName}) */ 0