FileAccess Unicode C Reference Documentation

FileAccess

Current Version: 9.5.0.98

API for reading and writing files, creating and deleting directories, deleting directory trees, splitting and re-joining large files, etc. This is a freeware class. The reason for its existence is that in some programming languages, file I/O API's are limited or difficult to understand/use. This API provides an identical FILE I/O API across all programming languages supported by Chilkat.

Create/Dispose

HCkFileAccessW instance = CkFileAccessW_Create();
// ...
CkFileAccessW_Dispose(instance);
HCkFileAccessW CkFileAccessW_Create(void);

Creates an instance of the HCkFileAccessW object and returns a handle ("void *" pointer). The handle is passed in the 1st argument for the functions listed on this page.

void CkFileAccessW_Dispose(HCkFileAccessW handle);

Objects created by calling CkFileAccessW_Create must be freed by calling this method. A memory leak occurs if a handle is not disposed by calling this function. Also, any handle returned by a Chilkat "C" function must also be freed by the application by calling the appropriate Dispose method, such as CkFileAccessW_Dispose.

Properties

CurrentDir
void CkFileAccessW_getCurrentDir(HCkFileAccessW cHandle, HCkString retval);
const wchar_t *CkFileAccessW_currentDir(HCkFileAccessW cHandle);

The current working directory of the calling process.

top
DebugLogFilePath
void CkFileAccessW_getDebugLogFilePath(HCkFileAccessW cHandle, HCkString retval);
void CkFileAccessW_putDebugLogFilePath(HCkFileAccessW cHandle, const wchar_t *newVal);
const wchar_t *CkFileAccessW_debugLogFilePath(HCkFileAccessW cHandle);

If set to a file path, causes each Chilkat method or property call to automatically append it's LastErrorText to the specified log file. The information is appended such that if a hang or crash occurs, it is possible to see the context in which the problem occurred, as well as a history of all Chilkat calls up to the point of the problem. The VerboseLogging property can be set to provide more detailed information.

This property is typically used for debugging the rare cases where a Chilkat method call hangs or generates an exception that halts program execution (i.e. crashes). A hang or crash should generally never happen. The typical causes of a hang are:

  1. a timeout related property was set to 0 to explicitly indicate that an infinite timeout is desired,
  2. the hang is actually a hang within an event callback (i.e. it is a hang within the application code), or
  3. there is an internal problem (bug) in the Chilkat code that causes the hang.

More Information and Examples
top
EndOfFile
BOOL CkFileAccessW_getEndOfFile(HCkFileAccessW cHandle);

Returns TRUE if the current open file is at the end-of-file.

top
FileOpenError
int CkFileAccessW_getFileOpenError(HCkFileAccessW cHandle);

This property is set by the following methods: FileOpen, OpenForRead, OpenForWrite, OpenForReadWrite, and OpenForAppend. It provides an error code indicating the failure reason. Possible values are:

  1. Success (No error)
  2. Access denied.
  3. File not found.
  4. General (non-specific) open error.
  5. File aleady exists.
  6. Path refers to a directory and the access requested involves writing.
  7. Too many symbolic links were encountered in resolving path.
  8. The process already has the maximum number of files open.
  9. Pathname is too long.
  10. The system limit on the total number of open files has been reached.
  11. Pathname refers to a device special file and no corresponding device exists.
  12. Insufficient kernel memory was available.
  13. Pathname was to be created but the device containing pathname has no room for the new file.
  14. A component used as a directory in pathname is not, in fact, a directory.
  15. Pathname refers to a regular file, too large to be opened (this would be a limitation of the underlying operating system, not a limitation imposed by Chilkat).
  16. Pathname refers to a file on a read-only filesystem and write access was requested.

top
FileOpenErrorMsg
void CkFileAccessW_getFileOpenErrorMsg(HCkFileAccessW cHandle, HCkString retval);
const wchar_t *CkFileAccessW_fileOpenErrorMsg(HCkFileAccessW cHandle);

The error message text associated with the FileOpenError code.

top
LastErrorHtml
void CkFileAccessW_getLastErrorHtml(HCkFileAccessW cHandle, HCkString retval);
const wchar_t *CkFileAccessW_lastErrorHtml(HCkFileAccessW cHandle);

Provides information in HTML format about the last method/property called. If a method call returns a value indicating failure, or behaves unexpectedly, examine this property to get more information.

top
LastErrorText
void CkFileAccessW_getLastErrorText(HCkFileAccessW cHandle, HCkString retval);
const wchar_t *CkFileAccessW_lastErrorText(HCkFileAccessW cHandle);

Provides information in plain-text format about the last method/property called. If a method call returns a value indicating failure, or behaves unexpectedly, examine this property to get more information.

top
LastErrorXml
void CkFileAccessW_getLastErrorXml(HCkFileAccessW cHandle, HCkString retval);
const wchar_t *CkFileAccessW_lastErrorXml(HCkFileAccessW cHandle);

Provides information in XML format about the last method/property called. If a method call returns a value indicating failure, or behaves unexpectedly, examine this property to get more information.

top
LastMethodSuccess
BOOL CkFileAccessW_getLastMethodSuccess(HCkFileAccessW cHandle);
void CkFileAccessW_putLastMethodSuccess(HCkFileAccessW cHandle, BOOL newVal);

Indicate whether the last method call succeeded or failed. A value of TRUE indicates success, a value of FALSE indicates failure. This property is automatically set for method calls. It is not modified by property accesses. The property is automatically set to indicate success for the following types of method calls:

  • Any method that returns a string.
  • Any method returning a Chilkat object, binary bytes, or a date/time.
  • Any method returning a standard boolean status value where success = TRUE and failure = FALSE.
  • Any method returning an integer where failure is defined by a return value less than zero.

Note: Methods that do not fit the above requirements will always set this property equal to TRUE. For example, a method that returns no value (such as a "void" in C++) will technically always succeed.

top
LockFileOnOpen
BOOL CkFileAccessW_getLockFileOnOpen(HCkFileAccessW cHandle);
void CkFileAccessW_putLockFileOnOpen(HCkFileAccessW cHandle, BOOL newVal);
Introduced in version 9.5.0.80

Note: This property only applies for applications running on Windows.

If TRUE, then the following methods open files for exclusive-access: OpenForAppend, OpenForRead, OpenForReadWrite, OpenForWrite. When a file is opened for exclusive access, it is locked so that no other process may open the file. When the file is closed, the lock is released.

The default value of this property is FALSE.

top
VerboseLogging
BOOL CkFileAccessW_getVerboseLogging(HCkFileAccessW cHandle);
void CkFileAccessW_putVerboseLogging(HCkFileAccessW cHandle, BOOL newVal);

If set to TRUE, then the contents of LastErrorText (or LastErrorXml, or LastErrorHtml) may contain more verbose information. The default value is FALSE. Verbose logging should only be used for debugging. The potentially large quantity of logged information may adversely affect peformance.

top
Version
void CkFileAccessW_getVersion(HCkFileAccessW cHandle, HCkString retval);
const wchar_t *CkFileAccessW_version(HCkFileAccessW cHandle);

Version of the component/library, such as "9.5.0.94"

More Information and Examples
top

Methods

AppendAnsi
BOOL CkFileAccessW_AppendAnsi(HCkFileAccessW cHandle, const wchar_t *text);

Appends a string using the ANSI character encoding to the currently open file.

Returns TRUE for success, FALSE for failure.

top
AppendBd
BOOL CkFileAccessW_AppendBd(HCkFileAccessW cHandle, HCkBinDataW bd);
Introduced in version 9.5.0.76

Appends the contents of bd to the currently open file.

Returns TRUE for success, FALSE for failure.

top
AppendSb
BOOL CkFileAccessW_AppendSb(HCkFileAccessW cHandle, HCkStringBuilderW sb, const wchar_t *charset);
Introduced in version 9.5.0.76

Appends the contents of sb using the character encoding (such as "utf-8") specified by charset to the currently open file.

Returns TRUE for success, FALSE for failure.

top
AppendText
BOOL CkFileAccessW_AppendText(HCkFileAccessW cHandle, const wchar_t *str, const wchar_t *charset);

Appends a string using the character encoding specified by str to the currently open file.

Returns TRUE for success, FALSE for failure.

top
AppendUnicodeBOM
BOOL CkFileAccessW_AppendUnicodeBOM(HCkFileAccessW cHandle);

Appends the 2-byte Unicode BOM (little endian) to the currently open file.

Returns TRUE for success, FALSE for failure.

top
AppendUtf8BOM
BOOL CkFileAccessW_AppendUtf8BOM(HCkFileAccessW cHandle);

Appends the 3-byte utf-8 BOM to the currently open file.

Returns TRUE for success, FALSE for failure.

top
DirAutoCreate
BOOL CkFileAccessW_DirAutoCreate(HCkFileAccessW cHandle, const wchar_t *filePath);

Same as DirEnsureExists, except the argument is a file path (the last part of the path is a filename and not a directory). Creates all missing directories such that filePath may be created.

Returns TRUE for success, FALSE for failure.

top
DirCreate
BOOL CkFileAccessW_DirCreate(HCkFileAccessW cHandle, const wchar_t *dirPath);

Creates a new directory specified by dirPath.

Returns TRUE for success, FALSE for failure.

top
DirDelete
BOOL CkFileAccessW_DirDelete(HCkFileAccessW cHandle, const wchar_t *dirPath);

Deletes the directory specified by dirPath. It is only possible to delete a directory if it contains no files or subdirectories.

Returns TRUE for success, FALSE for failure.

top
DirEnsureExists
BOOL CkFileAccessW_DirEnsureExists(HCkFileAccessW cHandle, const wchar_t *dirPath);

Creates all directories necessary such that the entire dirPath exists.

Returns TRUE for success, FALSE for failure.

top
FileClose
void CkFileAccessW_FileClose(HCkFileAccessW cHandle);

Closes the currently open file.

top
FileContentsEqual
BOOL CkFileAccessW_FileContentsEqual(HCkFileAccessW cHandle, const wchar_t *filePath1, const wchar_t *filePath2);

Compares the contents of two files and returns TRUE if they are equal and otherwise returns FALSE. The actual contents of the files are only compared if the sizes are equal. The files are not entirely loaded into memory. Instead, they are compared chunk by chunk. This allows for any size files to be compared, regardless of the memory capacity of the computer.

top
FileCopy
BOOL CkFileAccessW_FileCopy(HCkFileAccessW cHandle, const wchar_t *existingFilepath, const wchar_t *newFilepath, BOOL failIfExists);

Copys existingFilepath to newFilepath. If failIfExists is TRUE and newFilepath already exists, then an error is returned.

Returns TRUE for success, FALSE for failure.

top
FileDelete
BOOL CkFileAccessW_FileDelete(HCkFileAccessW cHandle, const wchar_t *filePath);

Deletes the file specified by filePath.

Returns TRUE for success, FALSE for failure.

top
FileExists
BOOL CkFileAccessW_FileExists(HCkFileAccessW cHandle, const wchar_t *filePath);

Returns TRUE if filePath exists, otherwise returns FALSE.

top
FileExists3
int CkFileAccessW_FileExists3(HCkFileAccessW cHandle, const wchar_t *path);
Introduced in version 9.5.0.45

Returns 1 if the file exists, 0 if the file does not exist, and -1 if unable to check because of directory permissions or some other error that prevents the ability to obtain the information.

top
FileOpen
BOOL CkFileAccessW_FileOpen(HCkFileAccessW cHandle, const wchar_t *filePath, unsigned long accessMode, unsigned long shareMode, unsigned long createDisposition, unsigned long attributes);

This method should only be called on Windows operating systems. It's arguments are similar to the Windows Platform SDK function named CreateFile. For Linux, MAC OS X, and other operating system, use the OpenForRead, OpenForWrite, OpenForReadWrite, and OpenForAppend methods.

Opens a file for reading or writing. The arguments mirror the Windows CreateFile function:

Access Modes:
GENERIC_READ	(0x80000000)
GENERIC_WRITE (0x40000000)

Share Modes:
FILE_SHARE_READ(0x00000001)
FILE_SHARE_WRITE(0x00000002)

Create Dispositions
CREATE_NEW          1
CREATE_ALWAYS       2
OPEN_EXISTING       3
OPEN_ALWAYS         4
TRUNCATE_EXISTING   5

// Attributes:
FILE_ATTRIBUTE_READONLY         0x00000001
FILE_ATTRIBUTE_HIDDEN           0x00000002
FILE_ATTRIBUTE_SYSTEM           0x00000004
FILE_ATTRIBUTE_DIRECTORY        0x00000010
FILE_ATTRIBUTE_ARCHIVE          0x00000020
FILE_ATTRIBUTE_NORMAL           0x00000080
FILE_ATTRIBUTE_TEMPORARY	   0x00000100

Returns TRUE for success, FALSE for failure.

top
FileRead
BOOL CkFileAccessW_FileRead(HCkFileAccessW cHandle, int maxNumBytes, const unsigned char * outBytes);

Reads bytes from the currently open file. maxNumBytes specifies the maximum number of bytes to read. Returns an empty byte array on error.

Returns TRUE for success, FALSE for failure.

top
FileReadBd
BOOL CkFileAccessW_FileReadBd(HCkFileAccessW cHandle, int maxNumBytes, HCkBinDataW binData);
Introduced in version 9.5.0.64

Reads bytes from the currently open file. maxNumBytes specifies the maximum number of bytes to read. Appends the bytes to the binData.

Returns TRUE for success, FALSE for failure.

top
FileRename
BOOL CkFileAccessW_FileRename(HCkFileAccessW cHandle, const wchar_t *existingFilepath, const wchar_t *newFilepath);

Renames a file from existingFilepath to newFilepath.

Returns TRUE for success, FALSE for failure.

top
FileSeek
BOOL CkFileAccessW_FileSeek(HCkFileAccessW cHandle, int offset, int origin);

Sets the file pointer for the currently open file. The offset is an offset in bytes from the origin. The origin can be one of the following:

0 = Offset is from beginning of file.
1 = Offset is from current position of file pointer.
2 = Offset is from the end-of-file (offset may be negative).

Returns TRUE for success, FALSE for failure.

top
FileSize
int CkFileAccessW_FileSize(HCkFileAccessW cHandle, const wchar_t *filePath);

Returns the size, in bytes, of a file. Returns -1 for failure.

Note: This method returns a signed 32-bit integer, which is not large enough to handle files greater than 2GB in size. To handle larger files, call FileSizeStr instead, or call FileSize64. The FileSize64 method was added in Chilkat v9.5.0.88.

Returns TRUE for success, FALSE for failure.

top
FileSize64
__int64 CkFileAccessW_FileSize64(HCkFileAccessW cHandle, const wchar_t *filePath);
Introduced in version 9.5.0.88

Returns the size, in bytes, of a file. Returns -1 for failure.

top
FileSizeStr
BOOL CkFileAccessW_FileSizeStr(HCkFileAccessW cHandle, const wchar_t *filePath, const wchar_t *outStr);
const wchar_t *CkFileAccessW_fileSizeStr(HCkFileAccessW cHandle, const wchar_t *filePath);
Introduced in version 9.5.0.80

Returns the size of the file in decimal string format.

Returns TRUE for success, FALSE for failure.

top
FileType
int CkFileAccessW_FileType(HCkFileAccessW cHandle, const wchar_t *path);
Introduced in version 9.5.0.77

Examines the file at path and returns one of the following values:

-1 = Unable to check because of directory permissions or some error preventing the ability to obtain the information.
0 = File does not exist.
1 = Regular file.
2 = Directory.
3 = Symbolic link.
4 = Windows Shortcut.
99 = Something else.

Additional file types may be added in the future as needed.

More Information and Examples
top
FileWrite
BOOL CkFileAccessW_FileWrite(HCkFileAccessW cHandle, HCkByteData data);

Writes bytes to the currently open file.

Returns TRUE for success, FALSE for failure.

top
FileWrite2
BOOL CkFileAccessW_FileWrite2(HCkFileAccessW cHandle, const void * pByteData, unsigned long szByteData);
Introduced in version 9.5.0.82

Writes bytes to the currently open file.

Returns TRUE for success, FALSE for failure.

top
FileWriteBd
BOOL CkFileAccessW_FileWriteBd(HCkFileAccessW cHandle, HCkBinDataW binData, int offset, int numBytes);
Introduced in version 9.5.0.64

Writes the contents of binData to the currently open file. To specify the entire contents of binData, set both offset and numBytes equal to 0. To write all remaining data starting at offset, then set numBytes equal to 0.

Returns TRUE for success, FALSE for failure.

More Information and Examples
top
GenBlockId
BOOL CkFileAccessW_GenBlockId(HCkFileAccessW cHandle, int index, int length, const wchar_t *encoding, const wchar_t *outStr);
const wchar_t *CkFileAccessW_genBlockId(HCkFileAccessW cHandle, int index, int length, const wchar_t *encoding);
Introduced in version 9.5.0.58

This is purely a utility/convenience method -- initially created to help with block file uploads to Azure Blob storage. It generates a block ID string that is the decimal representation of the index in length chars, and then encoded according to encoding (which can be an encoding such as "base64", "hex", "ascii", etc.) For example, if index = 8, length = 12, and encoding = "base64", then the string "00000012" is returned base64 encoded.

Returns TRUE for success, FALSE for failure.

top
GetDirectoryName
BOOL CkFileAccessW_GetDirectoryName(HCkFileAccessW cHandle, const wchar_t *path, const wchar_t *outStr);
const wchar_t *CkFileAccessW_getDirectoryName(HCkFileAccessW cHandle, const wchar_t *path);
Introduced in version 9.5.0.64

Returns the directory information for the specified path string.

GetDirectoryName('C:\MyDir\MySubDir\myfile.ext') returns 'C:\MyDir\MySubDir\'
GetDirectoryName('C:\MyDir\MySubDir') returns 'C:\MyDir\'
GetDirectoryName('C:\MyDir\') returns 'C:\MyDir\'
GetDirectoryName('C:\MyDir') returns 'C:\'
GetDirectoryName('C:\') returns 'C:\'

Returns TRUE for success, FALSE for failure.

More Information and Examples
top
GetExtension
BOOL CkFileAccessW_GetExtension(HCkFileAccessW cHandle, const wchar_t *path, const wchar_t *outStr);
const wchar_t *CkFileAccessW_getExtension(HCkFileAccessW cHandle, const wchar_t *path);
Introduced in version 9.5.0.64

Returns the extension of the specified path string.

GetExtension('C:\mydir.old\myfile.ext') returns '.ext'
GetExtension('C:\mydir.old\') returns ''

Returns TRUE for success, FALSE for failure.

More Information and Examples
top
GetFileName
BOOL CkFileAccessW_GetFileName(HCkFileAccessW cHandle, const wchar_t *path, const wchar_t *outStr);
const wchar_t *CkFileAccessW_getFileName(HCkFileAccessW cHandle, const wchar_t *path);
Introduced in version 9.5.0.64

Returns the file name and extension of the specified path string.

GetFileName('C:\mydir\myfile.ext') returns 'myfile.ext'
GetFileName('C:\mydir\') returns ''

Returns TRUE for success, FALSE for failure.

More Information and Examples
top
GetFileNameWithoutExtension
BOOL CkFileAccessW_GetFileNameWithoutExtension(HCkFileAccessW cHandle, const wchar_t *path, const wchar_t *outStr);
const wchar_t *CkFileAccessW_getFileNameWithoutExtension(HCkFileAccessW cHandle, const wchar_t *path);
Introduced in version 9.5.0.64

Returns the file name of the specified path string without the extension.

GetFileNameWithoutExtension('C:\mydir\myfile.ext') returns 'myfile'
GetFileNameWithoutExtension('C:\mydir\') returns ''

Returns TRUE for success, FALSE for failure.

More Information and Examples
top
GetFileTime
HCkDateTimeW CkFileAccessW_GetFileTime(HCkFileAccessW cHandle, const wchar_t *path, int which);
Introduced in version 9.5.0.71

Gets one of the following date/times for a file:

0: Last-modified
1: Last-access
2: Creation
The "path" argument indicates which time to return. The values can be 0, 1, or 2.

Note: Linux filesystems do not keep a file's creation date/time. In such a case, this method will return the last-modified time.

Returns NULL on failure

top
GetLastModified
HCkDateTimeW CkFileAccessW_GetLastModified(HCkFileAccessW cHandle, const wchar_t *path);
Introduced in version 9.5.0.66

Gets the last-modified date/time for a file. The accuracy of the last-modified data is to the number of seconds.

Returns NULL on failure

top
GetNumBlocks
int CkFileAccessW_GetNumBlocks(HCkFileAccessW cHandle, int blockSize);
Introduced in version 9.5.0.58

Returns the number of blocks in the currently open file. The number of bytes per block is specified by blockSize. The number of blocks is the file size divided by the blockSize, plus 1 if the file size is not evenly divisible by blockSize. For example, if the currently open file is 60500 bytes, and if the blockSize is 1000 bytes, then this method returns a count of 61 blocks.

Returns -1 if no file is open. Return 0 if the file is completely empty (0 bytes).

top
GetTempFilename
BOOL CkFileAccessW_GetTempFilename(HCkFileAccessW cHandle, const wchar_t *dirPath, const wchar_t *prefix, const wchar_t *outStr);
const wchar_t *CkFileAccessW_getTempFilename(HCkFileAccessW cHandle, const wchar_t *dirPath, const wchar_t *prefix);

Creates a temporary filepath of the form dirPath\prefix_xxxx.TMP Where "xxxx" are random alpha-numeric chars. The returned filepath is guaranteed to not already exist.

Returns TRUE for success, FALSE for failure.

top
OpenForAppend
BOOL CkFileAccessW_OpenForAppend(HCkFileAccessW cHandle, const wchar_t *filePath);

Opens a file for appending. If filePath did not already exists, it is created. When an existing file is opened with this method, the contents will not be overwritten and the file pointer is positioned at the end of the file.

If the open/create failed, then error information will be available in the FileOpenError and FileOpenErrorMsg properties.

Returns TRUE for success, FALSE for failure.

top
OpenForRead
BOOL CkFileAccessW_OpenForRead(HCkFileAccessW cHandle, const wchar_t *filePath);

Opens a file for reading. The file may contain any type of data (binary or text) and it must already exist. If the open failed, then error information will be available in the FileOpenError and FileOpenErrorMsg properties.

Returns TRUE for success, FALSE for failure.

More Information and Examples
top
OpenForReadWrite
BOOL CkFileAccessW_OpenForReadWrite(HCkFileAccessW cHandle, const wchar_t *filePath);

Opens a file for reading/writing. If filePath did not already exists, it is created. When an existing file is opened with this method, the contents will not be overwritten, but the file pointer is positioned at the beginning of the file.

If the open/create failed, then error information will be available in the FileOpenError and FileOpenErrorMsg properties.

Returns TRUE for success, FALSE for failure.

top
OpenForWrite
BOOL CkFileAccessW_OpenForWrite(HCkFileAccessW cHandle, const wchar_t *filePath);

Opens a file for writing. If filePath did not already exists, it is created. When an existing file is opened with this method, the contents will be overwritten. (For example, calling OpenForWrite on an existing file and then immediately closing the file will result in an empty file.) If the open/create failed, then error information will be available in the FileOpenError and FileOpenErrorMsg properties.

Returns TRUE for success, FALSE for failure.

top
ReadBinaryToEncoded
BOOL CkFileAccessW_ReadBinaryToEncoded(HCkFileAccessW cHandle, const wchar_t *filePath, const wchar_t *encoding, const wchar_t *outStr);
const wchar_t *CkFileAccessW_readBinaryToEncoded(HCkFileAccessW cHandle, const wchar_t *filePath, const wchar_t *encoding);

Reads the entire contents of a binary file and returns it as an encoded string (using an encoding such as Base64, Hex, etc.) The encoding may be one of the following strings: base64, hex, qp, or url.

Returns TRUE for success, FALSE for failure.

More Information and Examples
top
ReadBlock
BOOL CkFileAccessW_ReadBlock(HCkFileAccessW cHandle, int blockIndex, int blockSize, const unsigned char * outBytes);
Introduced in version 9.5.0.58

Reads the Nth block of a file, where the size of each block is specified by blockSize. The first block is at blockIndex 0. If the block to be read is the last in the file and there is not enough data to fill an entire block, then the partial block is returned.

Returns TRUE for success, FALSE for failure.

More Information and Examples
top
ReadBlockBd
BOOL CkFileAccessW_ReadBlockBd(HCkFileAccessW cHandle, int blockIndex, int blockSize, HCkBinDataW bd);
Introduced in version 9.5.0.79

Reads the Nth block of a file, where the size of each block is specified by blockSize. The first block is at blockIndex 0. If the block to be read is the last in the file and there is not enough data to fill an entire block, then the partial block is returned. The file data is appended to the contents of bd.

top
ReadEntireFile
BOOL CkFileAccessW_ReadEntireFile(HCkFileAccessW cHandle, const wchar_t *filePath, const unsigned char * outBytes);

Reads the entire contents of a binary file and returns the data.

Returns TRUE for success, FALSE for failure.

top
ReadEntireTextFile
BOOL CkFileAccessW_ReadEntireTextFile(HCkFileAccessW cHandle, const wchar_t *filePath, const wchar_t *charset, const wchar_t *outStrFileContents);
const wchar_t *CkFileAccessW_readEntireTextFile(HCkFileAccessW cHandle, const wchar_t *filePath, const wchar_t *charset);

Reads the entire contents of a text file, interprets the bytes according to the character encoding specified by charset, and returns the text file as a string.

Returns TRUE for success, FALSE for failure.

top
ReadNextFragment
int CkFileAccessW_ReadNextFragment(HCkFileAccessW cHandle, BOOL startAtBeginning, const wchar_t *beginMarker, const wchar_t *endMarker, const wchar_t *charset, HCkStringBuilderW sb);
Introduced in version 9.5.0.80

Scans the currently open file (opened by calling OpenForRead) for the next chunk of text delimited by beginMarker and endMarker. The matched text, including the beginMarker and endMarker are appended to sb. The bytes of the text file are interpreted according to charset. If startAtBeginning equals TRUE, then scanning begins at the start of the file. Otherwise scanning begins starting at the byte following the last matched fragment.

The return value of this function is:
0: No match was found.
1: Found the next matching fragment and appended to sb.
-1: Error reading the file.

To support a common need for use with XML files, the beginMarker is "XML tag aware". If the beginMarker is a string such as "", then it will also match "

More Information and Examples
top
ReassembleFile
BOOL CkFileAccessW_ReassembleFile(HCkFileAccessW cHandle, const wchar_t *partsDirPath, const wchar_t *partPrefix, const wchar_t *partExtension, const wchar_t *reassembledFilename);

Reassembles a file previously split by the SplitFile method.

Returns TRUE for success, FALSE for failure.

More Information and Examples
top
ReplaceStrings
int CkFileAccessW_ReplaceStrings(HCkFileAccessW cHandle, const wchar_t *filePath, const wchar_t *charset, const wchar_t *existingString, const wchar_t *replacementString);

Replaces all occurrences of existingString with replacementString in a file. The character encoding, such as utf-8, ansi, etc. is specified by charset.

top
SetCurrentDir
BOOL CkFileAccessW_SetCurrentDir(HCkFileAccessW cHandle, const wchar_t *dirPath);

Sets the current working directory for the calling process to dirPath.

Returns TRUE for success, FALSE for failure.

top
SetFileTimes
BOOL CkFileAccessW_SetFileTimes(HCkFileAccessW cHandle, const wchar_t *filePath, HCkDateTimeW createTime, HCkDateTimeW lastAccessTime, HCkDateTimeW lastModTime);

Sets the create date/time, the last-access date/time, and the last-modified date/time for a file. For non-Windows filesystems where create times are not implemented, the createTime is ignored.

top
SetLastModified
BOOL CkFileAccessW_SetLastModified(HCkFileAccessW cHandle, const wchar_t *filePath, HCkDateTimeW lastModified);

Sets the last-modified date/time for a file.

top
SplitFile
BOOL CkFileAccessW_SplitFile(HCkFileAccessW cHandle, const wchar_t *fileToSplit, const wchar_t *partPrefix, const wchar_t *partExtension, int partSize, const wchar_t *destDir);

Splits a file into chunks. To reassemble a split file, see the ReassembleFile method. Please refer to the example below:

Returns TRUE for success, FALSE for failure.

More Information and Examples
top
SymlinkCreate
BOOL CkFileAccessW_SymlinkCreate(HCkFileAccessW cHandle, const wchar_t *targetPath, const wchar_t *linkPath);
Introduced in version 9.5.0.77

Creates a symbolic link.

Note: On Windows systems, this is not the same as creating a shortcut. A Windows symbolic link and a Windows shortcut are two different things. Shortcut files are common on Windows, but not symbolic links. Creating a symbolic link requires a special privilege, unless running as administrator. To be able to create symbolic links, your user account or group needs to be listed in secpol.msc → Security Settings → Local Policies → User Rights Assignment → Create symbolic links. However the special setting is not needed when running within the development environment, such as from Visual Studio.

Returns TRUE for success, FALSE for failure.

More Information and Examples
top
SymlinkTarget
BOOL CkFileAccessW_SymlinkTarget(HCkFileAccessW cHandle, const wchar_t *linkPath, const wchar_t *outStr);
const wchar_t *CkFileAccessW_symlinkTarget(HCkFileAccessW cHandle, const wchar_t *linkPath);
Introduced in version 9.5.0.77

Returns the full pathname of the file at the end of the linkPath. Also handles Windows shortcut files by returning the absolute path of the target.

Returns TRUE for success, FALSE for failure.

top
TreeDelete
BOOL CkFileAccessW_TreeDelete(HCkFileAccessW cHandle, const wchar_t *path);

Deletes an entire directory tree (all files and sub-directories).

Returns TRUE for success, FALSE for failure.

top
Truncate
BOOL CkFileAccessW_Truncate(HCkFileAccessW cHandle);
Introduced in version 9.5.0.80

Truncates the currently open file at the current file position.

Returns TRUE for success, FALSE for failure.

top
WriteEntireFile
BOOL CkFileAccessW_WriteEntireFile(HCkFileAccessW cHandle, const wchar_t *filePath, HCkByteData fileData);

Opens/creates filePath, writes fileData, and closes the file.

Returns TRUE for success, FALSE for failure.

top
WriteEntireTextFile
BOOL CkFileAccessW_WriteEntireTextFile(HCkFileAccessW cHandle, const wchar_t *filePath, const wchar_t *textData, const wchar_t *charset, BOOL includedPreamble);

Opens filePath, writes textData using the character encoding specified by charset, and closes the file. If includedPreamble is TRUE and the charset is Unicode or utf-8, then the BOM is included at the beginning of the file.

Returns TRUE for success, FALSE for failure.

More Information and Examples
top