object FileApi

Annotations
@extern()
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FileApi
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. type ByHandleFileInformation = CStruct10[DWord, FileTimeStruct, FileTimeStruct, FileTimeStruct, DWord, DWord, DWord, DWord, DWord, DWord]
  2. type Win32FindDataA = CStruct13[DWord, FileTimeStruct, FileTimeStruct, FileTimeStruct, DWord, DWord, DWord, DWord, FileName[CChar], AlternateFileName[CChar], DWord, DWord, Word]
  3. type Win32FindDataW = CStruct13[DWord, FileTimeStruct, FileTimeStruct, FileTimeStruct, DWord, DWord, DWord, DWord, FileName[WChar], AlternateFileName[WChar], DWord, DWord, Word]

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def CreateDirectoryA(filename: CString, securityAttributes: Ptr[SecurityAttributes]): Boolean
  5. def CreateDirectoryW(filename: CWString, securityAttributes: Ptr[SecurityAttributes]): Boolean
  6. def CreateFileA(filename: CString, desiredAccess: DWord, shareMode: DWord, securityAttributes: SecurityAttributes, creationDisposition: DWord, flagsAndAttributes: UInt, templateFile: Handle): Handle
  7. def CreateFileW(filename: CWString, desiredAccess: DWord, shareMode: DWord, securityAttributes: SecurityAttributes, creationDisposition: DWord, flagsAndAttributes: UInt, templateFile: Handle): Handle
  8. def DeleteFileA(filename: CString): Boolean
  9. def DeleteFileW(filename: CWString): Boolean
  10. def FindClose(searchHandle: Handle): Boolean
  11. def FindFirstFileA(filename: CString, findFileData: Ptr[Win32FindDataA]): Handle
  12. def FindFirstFileW(filename: CWString, findFileData: Ptr[Win32FindDataW]): Handle
  13. def FindNextFileA(searchHandle: Handle, findFileData: Ptr[Win32FindDataA]): Boolean
  14. def FindNextFileW(searchHandle: Handle, findFileData: Ptr[Win32FindDataW]): Boolean
  15. def FlushFileBuffers(handle: Handle): Boolean
    Annotations
    @blocking()
  16. def GetFileAttributesA(filename: CString): DWord
  17. def GetFileAttributesW(filename: CWString): DWord
  18. def GetFileInformationByHandle(file: Handle, fileInformation: Ptr[ByHandleFileInformation]): Boolean
  19. def GetFileSizeEx(file: Handle, fileSize: Ptr[LargeInteger]): Boolean
  20. def GetFileTime(file: Handle, creationTime: Ptr[FileTime], lastAccessTime: Ptr[FileTime], lastWriteTime: Ptr[FileTime]): Boolean
  21. def GetFinalPathNameByHandleA(handle: Handle, buffer: CString, bufferSize: DWord, flags: DWord): DWord
  22. def GetFinalPathNameByHandleW(handle: Handle, buffer: CWString, bufferSize: DWord, flags: DWord): DWord
  23. def GetFullPathNameA(filename: CString, bufferLength: DWord, buffer: CString, filePart: Ptr[CString]): DWord
  24. def GetFullPathNameW(filename: CWString, bufferLength: DWord, buffer: CWString, filePart: Ptr[CWString]): DWord
  25. def GetLogicalDriveStringsW(bufferLength: DWord, buffer: CWString): DWord
  26. def GetTempFileNameW(pathName: CWString, prefixString: CWString, unique: UInt, tempFileName: CWString): UInt
  27. def GetTempPathA(bufferLength: DWord, buffer: CString): DWord
  28. def GetTempPathW(bufferLength: DWord, buffer: CWString): DWord
  29. def GetVolumePathNameW(filename: CWString, volumePathName: CWString, bufferLength: DWord): Boolean
  30. def LockFile(hfile: Handle, dwFileOffsetLow: DWord, dwFileOffsetHigh: DWord, nNumberOfBytesToLockLow: DWord, nNumberOfBytesToLockHigh: DWord): Boolean
  31. def LockFileEx(hfile: Handle, dwFlags: DWord, dwReserved: DWord, nNumberOfBytesToLockLow: DWord, nNumberOfBytesToLockHigh: DWord, lpOverlapped: Ptr[OVERLAPPED]): Boolean
    Annotations
    @blocking()
  32. def ReadFile(fileHandle: Handle, buffer: CVoidPtr, bytesToRead: DWord, bytesReadPtr: Ptr[DWord], overlapped: CVoidPtr): Boolean
    Annotations
    @blocking()
  33. def RemoveDirectoryW(filename: CWString): Boolean
  34. def SetEndOfFile(file: Handle): Boolean
  35. def SetFileAttributesA(filename: CString, fileAttributes: DWord): Boolean
  36. def SetFileAttributesW(filename: CWString, fileAttributes: DWord): Boolean
  37. def SetFilePointerEx(file: Handle, distanceToMove: LargeInteger, newFilePointer: Ptr[LargeInteger], moveMethod: DWord): Boolean
  38. def SetFileTime(file: Handle, creationTime: Ptr[FileTime], lastAccessTime: Ptr[FileTime], lastWriteTime: Ptr[FileTime]): Boolean
  39. def UnlockFile(hfile: Handle, dwFileOffsetLow: DWord, dwFileOffsetHigh: DWord, nNumberOfBytesToUnlockLow: DWord, nNumberOfBytesToUnlockHigh: DWord): Boolean
  40. def WriteFile(fileHandle: Handle, buffer: CVoidPtr, bytesToRead: DWord, bytesWritten: Ptr[DWord], overlapped: CVoidPtr): Boolean
    Annotations
    @blocking()
  41. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  42. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  43. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  44. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  45. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  46. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  47. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  48. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  49. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  50. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  51. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  52. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  53. def toString(): String
    Definition Classes
    AnyRef → Any
  54. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  55. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  56. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped