FileAccess CkPython Reference Documentation
CkFileAccess
Current Version: 11.5.0
Chilkat.FileAccess
Load or save text and binary files, append data, replace file contents,
and work with explicit character encodings when needed.
Copy, rename, delete, compare, split, reassemble, and inspect files using
straightforward file-system utility methods.
Create, remove, check, and work with directories, and use path helpers to
extract filenames, extensions, directory names, and related path parts.
Open files for lower-level reading or writing, seek within files, read
blocks, and process large files without loading everything at once.
Get or set file times, inspect sizes and existence, and use metadata
helpers when coordinating file processing workflows.
Generate temporary filenames, work with symbolic links, scan for byte
fragments, and perform text replacement in files.
For an extended overview, see
FileAccess Class Overview.
Read, write, compare, copy, split, inspect, and manage files and paths.
Chilkat.FileAccess provides general-purpose file-system
utilities for applications that need direct control over files, directories,
paths, timestamps, and low-level file operations. It can read, write, append,
seek, compare, copy, rename, delete, split, reassemble, and inspect files,
and also includes helpers for directory operations, path parsing, symbolic
links, temporary filenames, block-based reading, fragment scanning, text
replacement, and open-file access.
Read and write files
File management
Directories and paths
Open-file operations
Timestamps and metadata
Special file utilities
FileAccess for local file-system tasks that are outside the
scope of a specific protocol class. It is especially useful for preparing
files before upload, saving downloaded data, comparing or splitting files,
reading large files in blocks, manipulating paths, or performing small
filesystem operations without using platform-specific APIs.
Object Creation
obj = chilkat.CkFileAccess()
Properties
CurrentDir
# ckStr is a CkString
fileAccess.get_CurrentDir(ckStr);
strVal = fileAccess.currentDir();
Returns the current working directory of the calling process. Relative file and directory paths are resolved against this process-wide working directory.
FileAccess object. Changing it can therefore affect relative-path behavior elsewhere in the application.DebugLogFilePath
# ckStr is a CkString
fileAccess.get_DebugLogFilePath(ckStr);
strVal = fileAccess.debugLogFilePath();
fileAccess.put_DebugLogFilePath(strVal);
If set to a file path, this property logs the LastErrorText of each Chilkat method or property call to the specified file. This logging helps identify the context and history of Chilkat calls leading up to any crash or hang, aiding in debugging.
Enabling the VerboseLogging property provides more detailed information. This property is mainly used for debugging rare instances where a Chilkat method call causes a hang or crash, which should generally not happen.
Possible causes of hangs include:
- A timeout property set to 0, indicating an infinite timeout.
- A hang occurring within an event callback in the application code.
- An internal bug in the Chilkat code causing the hang.
EndOfFile
boolVal = fileAccess.get_EndOfFile();
Returns True when the currently open file is positioned at end-of-file; otherwise returns False.
OpenForRead, OpenForWrite, OpenForReadWrite, OpenForAppend, or FileOpen.FileOpenError
intVal = fileAccess.get_FileOpenError();
Provides the detailed open-error code from the most recent call to FileOpen, OpenForRead, OpenForWrite, OpenForReadWrite, or OpenForAppend.
| Code | Meaning |
|---|---|
0 | Success; no open error. |
1 | Access denied. |
2 | File not found. |
3 | General, non-specific open error. |
4 | File already exists. |
5 | The path refers to a directory and the requested access involves writing. |
6 | Too many symbolic links were encountered while resolving the path. |
7 | The process already has the maximum number of files open. |
8 | The pathname is too long. |
9 | The system-wide limit on open files has been reached. |
10 | The pathname refers to a device special file for which no corresponding device exists. |
11 | Insufficient kernel memory was available. |
12 | A file was to be created, but the containing device has no space available. |
13 | A pathname component expected to be a directory is not a directory. |
14 | The regular file is too large to be opened because of an operating-system limitation. |
15 | The path is on a read-only filesystem and write access was requested. |
FileOpenError is useful for programmatic handling; FileOpenErrorMsg provides the corresponding human-readable message.FileOpenErrorMsg
# ckStr is a CkString
fileAccess.get_FileOpenErrorMsg(ckStr);
strVal = fileAccess.fileOpenErrorMsg();
Returns the human-readable message corresponding to FileOpenError for the most recent file-open attempt.
LastErrorHtml
# ckStr is a CkString
fileAccess.get_LastErrorHtml(ckStr);
strVal = fileAccess.lastErrorHtml();
Provides HTML-formatted information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.
topLastErrorText
# ckStr is a CkString
fileAccess.get_LastErrorText(ckStr);
strVal = fileAccess.lastErrorText();
Provides plain text information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.
LastErrorXml
# ckStr is a CkString
fileAccess.get_LastErrorXml(ckStr);
strVal = fileAccess.lastErrorXml();
Provides XML-formatted information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.
topLastMethodSuccess
boolVal = fileAccess.get_LastMethodSuccess();
fileAccess.put_LastMethodSuccess(boolVal);
Indicates the success or failure of the most recent method call: True means success, False means failure. This property remains unchanged by property setters or getters. This method is present to address challenges in checking for null or Nothing returns in certain programming languages. Note: This property does not apply to methods that return integer values or to boolean-returning methods where the boolean does not indicate success or failure.
LockFileOnOpen
boolVal = fileAccess.get_LockFileOnOpen();
fileAccess.put_LockFileOnOpen(boolVal);
Windows only. If True, OpenForAppend, OpenForRead, OpenForReadWrite, and OpenForWrite request exclusive access to the file. Other processes are prevented from opening the file until FileClose releases the handle. The default is False.
OpenFor* method.Utf8
boolVal = fileAccess.get_Utf8();
fileAccess.put_Utf8(boolVal);
When set to True, all string arguments and return values are interpreted as UTF-8 strings. When set to False, they are interpreted as ANSI strings.
In Chilkat v11.0.0 and later, the default value is True. Before v11.0.0, it was False.
VerboseLogging
boolVal = fileAccess.get_VerboseLogging();
fileAccess.put_VerboseLogging(boolVal);
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.
Version
# ckStr is a CkString
fileAccess.get_Version(ckStr);
strVal = fileAccess.version();
Methods
AppendAnsi
status = fileAccess.AppendAnsi(text);
Appends text to the currently open file after converting the string to the legacy ANSI character encoding used by Chilkat for the platform.
AppendText or AppendSb when an explicit encoding such as utf-8 is preferred.Returns True for success, False for failure.
topAppendBd
Appends all bytes contained in bd to the currently open file without text conversion.
Returns True for success, False for failure.
topAppendSb
Appends the text contained in sb to the currently open file using the character encoding specified by charset.
Returns True for success, False for failure.
topAppendText
# charset is a string
status = fileAccess.AppendText(str, charset);
Appends str to the currently open file after encoding the text with the character set named by charset, such as utf-8 or iso-8859-1.
Returns True for success, False for failure.
topAppendUnicodeBOM
Appends the UTF-16 little-endian byte-order mark to the currently open file. The two bytes written are FF FE.
Returns True for success, False for failure.
topAppendUtf8BOM
Appends the UTF-8 byte-order mark to the currently open file. The three bytes written are EF BB BF.
Returns True for success, False for failure.
topDirAutoCreate
status = fileAccess.DirAutoCreate(filePath);
Ensures that the directory portion of filePath exists. Any missing parent directories are created; the final path component is treated as a filename and is not created as a directory.
DirAutoCreate when you have a file path. Use DirEnsureExists when the argument itself is a directory path.Returns True for success, False for failure.
topDirCreate
status = fileAccess.DirCreate(dirPath);
Creates the directory specified by dirPath. Parent directories must already exist; use DirEnsureExists when missing parent directories should also be created.
Returns True for success, False for failure.
topDirDelete
status = fileAccess.DirDelete(dirPath);
Deletes the directory specified by dirPath. The directory must be empty; use TreeDelete to recursively delete a directory and its contents.
Returns True for success, False for failure.
topDirEnsureExists
status = fileAccess.DirEnsureExists(dirPath);
Ensures that the complete directory path dirPath exists, creating missing directories along the path as needed.
Returns True for success, False for failure.
topDirExists
retBool = fileAccess.DirExists(dirPath);
Returns True if dirPath exists as a directory; otherwise returns False.
FileClose
Closes the currently open file and releases its operating-system file handle. Any exclusive lock obtained through LockFileOnOpen is released at this time.
FileContentsEqual
# filePath2 is a string
retBool = fileAccess.FileContentsEqual(filePath1, filePath2);
Compares filePath1 and filePath2 byte-for-byte and returns True only when their contents are identical. File sizes are compared first; when sizes match, the files are compared incrementally rather than being loaded entirely into memory.
FileCopy
# newFilepath is a string
# failIfExists is a boolean
status = fileAccess.FileCopy(existingFilepath, newFilepath, failIfExists);
Copies existingFilepath to newFilepath. If failIfExists is True and the destination already exists, the copy fails instead of overwriting it.
Returns True for success, False for failure.
topFileDelete
status = fileAccess.FileDelete(filePath);
FileExists
retBool = fileAccess.FileExists(filePath);
Returns True if filePath exists; otherwise returns False. Use FileExists3 when the application must distinguish "does not exist" from "could not determine because of an error."
FileExists3
retInt = fileAccess.FileExists3(path);
Checks whether path exists and returns a three-state result: 1 if it exists, 0 if it does not exist, and -1 if Chilkat could not determine the result because of permissions or another filesystem error.
FileOpen
# accessMode is an integer
# shareMode is an integer
# createDisposition is an integer
# attributes is an integer
status = fileAccess.FileOpen(filePath, accessMode, shareMode, createDisposition, attributes);
Windows-specific low-level open. Opens filePath using arguments modeled after the Win32 CreateFile API. For portable code, prefer OpenForRead, OpenForWrite, OpenForReadWrite, or OpenForAppend.
| Category | Common values |
|---|---|
| Access | GENERIC_READ = 0x80000000, GENERIC_WRITE = 0x40000000 |
| Sharing | FILE_SHARE_READ = 0x1, FILE_SHARE_WRITE = 0x2 |
| Disposition | CREATE_NEW=1, CREATE_ALWAYS=2, OPEN_EXISTING=3, OPEN_ALWAYS=4, TRUNCATE_EXISTING=5 |
FileOpenError and FileOpenErrorMsg for the reason.Returns True for success, False for failure.
topFileReadBd
# binData is a CkBinData
status = fileAccess.FileReadBd(maxNumBytes, binData);
Reads up to maxNumBytes bytes from the current file position and appends the bytes to binData. The file position advances by the number of bytes read.
binData are preserved; newly read bytes are appended.Returns True for success, False for failure.
FileRename
# newFilepath is a string
status = fileAccess.FileRename(existingFilepath, newFilepath);
Renames or moves existingFilepath to newFilepath using the local filesystem.
Returns True for success, False for failure.
topFileSeek
# origin is an integer
status = fileAccess.FileSeek(offset, origin);
Moves the current file position by offset bytes relative to origin.
0 | Offset from the beginning of the file. |
1 | Offset from the current file position. |
2 | Offset from end-of-file; negative offsets are commonly used. |
Returns True for success, False for failure.
topFileSize
status = fileAccess.FileSize(filePath);
Returns the file size in bytes as a signed 32-bit integer, or -1 on failure.
FileSize64 or FileSizeStr for large files.Returns True for success, False for failure.
topFileSize64
retInt64 = fileAccess.FileSize64(filePath);
Returns the size of filePath in bytes as a signed 64-bit integer, or -1 on failure.
FileSizeStr
# outStr is a CkString (output)
status = fileAccess.FileSizeStr(filePath, outStr);
retStr = fileAccess.fileSizeStr(filePath);
Returns the size of filePath in bytes as a decimal string. This avoids the range limitation of a 32-bit integer return value.
Returns True for success, False for failure.
topFileType
retInt = fileAccess.FileType(path);
Examines path and classifies the filesystem entry.
-1 | Unable to determine because of permissions or another error. |
0 | Does not exist. |
1 | Regular file. |
2 | Directory. |
3 | Symbolic link. |
4 | Windows shortcut. |
99 | Another filesystem type. |
FileWriteBd
# offset is an integer
# numBytes is an integer
status = fileAccess.FileWriteBd(binData, offset, numBytes);
Writes bytes from binData to the currently open file. offset selects the starting byte within the BinData; numBytes selects how many bytes to write. Set both to 0 to write the entire BinData, or set numBytes to 0 to write all remaining bytes beginning at offset.
Returns True for success, False for failure.
GenBlockId
# length is an integer
# encoding is a string
# outStr is a CkString (output)
status = fileAccess.GenBlockId(index, length, encoding, outStr);
retStr = fileAccess.genBlockId(index, length, encoding);
Generates a fixed-width decimal block identifier from index, padded to length characters, and then encodes those bytes using encoding (for example base64, hex, or ascii). This utility was originally added for block-oriented uploads such as Azure Blob block uploads.
Returns True for success, False for failure.
topGetDirectoryName
# outStr is a CkString (output)
status = fileAccess.GetDirectoryName(path, outStr);
retStr = fileAccess.getDirectoryName(path);
Returns the directory portion of path according to Chilkat path-parsing rules.
GetDirectoryName('C:\MyDir\MySubDir\myfile.ext') -> 'C:\MyDir\MySubDir\'
GetDirectoryName('C:\MyDir\MySubDir') -> 'C:\MyDir\'
GetDirectoryName('C:\') -> 'C:\'Returns True for success, False for failure.
GetExtension
# outStr is a CkString (output)
status = fileAccess.GetExtension(path, outStr);
retStr = fileAccess.getExtension(path);
Returns the filename extension portion of path, including the leading period. A period appearing only in a directory name is not treated as the file extension.
GetExtension('C:\mydir.old\myfile.ext') -> '.ext'
GetExtension('C:\mydir.old\') -> ''Returns True for success, False for failure.
GetFileName
# outStr is a CkString (output)
status = fileAccess.GetFileName(path, outStr);
retStr = fileAccess.getFileName(path);
Returns the final filename component of path, including its extension. If the path ends with a directory separator, the returned filename is empty.
GetFileName('C:\mydir\myfile.ext') -> 'myfile.ext'
GetFileName('C:\mydir\') -> ''Returns True for success, False for failure.
GetFileNameWithoutExtension
# outStr is a CkString (output)
status = fileAccess.GetFileNameWithoutExtension(path, outStr);
retStr = fileAccess.getFileNameWithoutExtension(path);
Returns the final filename component of path with its extension removed. If path ends with a directory separator, the returned value is empty.
GetFileNameWithoutExtension('C:\mydir\myfile.ext') -> 'myfile'
GetFileNameWithoutExtension('C:\mydir\') -> ''Returns True for success, False for failure.
GetFileTimeStr
# which is an integer
# outStr is a CkString (output)
status = fileAccess.GetFileTimeStr(path, which, outStr);
retStr = fileAccess.getFileTimeStr(path, which);
Returns one file timestamp as an ISO 8601 UTC string in the form YYYY-MM-DDTHH:MM:SSZ. The which argument selects 0 = last-modified, 1 = last-access, or 2 = creation.
Returns True for success, False for failure.
topGetNumBlocks
retInt = fileAccess.GetNumBlocks(blockSize);
Returns how many blockSize-byte blocks are required to cover the currently open file. A partial final block counts as one block. Returns 0 for an empty file and -1 if no file is open.
ceil(fileSize / blockSize) for a non-empty file.GetTempFilename
# prefix is a string
# outStr is a CkString (output)
status = fileAccess.GetTempFilename(dirPath, prefix, outStr);
retStr = fileAccess.getTempFilename(dirPath, prefix);
Generates a temporary pathname in dirPath using prefix and a random alphanumeric suffix, in the general form prefix_xxxx.TMP. The returned pathname is guaranteed not to already exist at the time it is generated.
Returns True for success, False for failure.
topOpenForAppend
status = fileAccess.OpenForAppend(filePath);
Opens filePath for writing at end-of-file. The file is created if it does not exist. Existing content is preserved, and the initial file position is at the end.
FileOpenError and FileOpenErrorMsg. On Windows, LockFileOnOpen can request exclusive access for this method.Returns True for success, False for failure.
topOpenForRead
status = fileAccess.OpenForRead(filePath);
Opens an existing filePath for reading. The file may contain text or binary data and must already exist.
FileOpenError and FileOpenErrorMsg. On Windows, LockFileOnOpen can request exclusive access for this method.Returns True for success, False for failure.
OpenForReadWrite
status = fileAccess.OpenForReadWrite(filePath);
Opens filePath for both reading and writing. The file is created if necessary. Existing content is preserved, and the initial file position is at the beginning.
FileOpenError and FileOpenErrorMsg. On Windows, LockFileOnOpen can request exclusive access for this method.Returns True for success, False for failure.
topOpenForWrite
status = fileAccess.OpenForWrite(filePath);
Opens filePath for writing. The file is created if necessary; if it already exists, it is truncated to zero length when opened.
FileOpenError and FileOpenErrorMsg. On Windows, LockFileOnOpen can request exclusive access for this method.Returns True for success, False for failure.
topReadBinaryToEncoded
# encoding is a string
# outStr is a CkString (output)
status = fileAccess.ReadBinaryToEncoded(filePath, encoding, outStr);
retStr = fileAccess.readBinaryToEncoded(filePath, encoding);
Reads the entire file at filePath as binary data and returns an encoded textual representation. Supported encoding names documented for this method include base64, hex, qp, and url.
Returns True for success, False for failure.
ReadBlockBd
# blockSize is an integer
# bd is a CkBinData
retBool = fileAccess.ReadBlockBd(blockIndex, blockSize, bd);
Reads the zero-based block blockIndex from the currently open file, using blockSize bytes per block, and appends the bytes to bd. A partial final block is appended at its actual length.
bd are preserved; the block bytes are appended.ReadEntireTextFile
# charset is a string
# outStrFileContents is a CkString (output)
status = fileAccess.ReadEntireTextFile(filePath, charset, outStr);
retStr = fileAccess.readEntireTextFile(filePath, charset);
Reads the entire file at filePath, decodes its bytes using charset, and returns the resulting text.
Returns True for success, False for failure.
topReadNextFragment
# beginMarker is a string
# endMarker is a string
# charset is a string
# sb is a CkStringBuilder
retInt = fileAccess.ReadNextFragment(startAtBeginning, beginMarker, endMarker, charset, sb);
Scans the currently open file for the next text fragment beginning with beginMarker and ending with endMarker. The matched fragment, including both markers, is decoded using charset and appended to sb. If startAtBeginning is True, scanning restarts at the beginning of the file; otherwise it continues after the previously matched fragment.
1 | A fragment was found and appended. |
0 | No matching fragment was found. |
-1 | An error occurred while reading. |
ReassembleFile
# partPrefix is a string
# partExtension is a string
# reassembledFilename is a string
status = fileAccess.ReassembleFile(partsDirPath, partPrefix, partExtension, reassembledFilename);
Reassembles a file previously divided by SplitFile. Parts are read from partsDirPath using the supplied partPrefix and partExtension, and the combined bytes are written to reassembledFilename.
Returns True for success, False for failure.
ReplaceStrings
# charset is a string
# existingString is a string
# replacementString is a string
retInt = fileAccess.ReplaceStrings(filePath, charset, existingString, replacementString);
Reads the file at filePath as text using charset, replaces occurrences of existingString with replacementString, writes the updated text back to the file, and returns the number of replacements made.
SetCurrentDir
status = fileAccess.SetCurrentDir(dirPath);
Changes the current working directory of the calling process to dirPath.
Returns True for success, False for failure.
topSetFileTimes
# createTime is a CkDateTime
# lastAccessTime is a CkDateTime
# lastModTime is a CkDateTime
retBool = fileAccess.SetFileTimes(filePath, createTime, lastAccessTime, lastModTime);
Sets the creation, last-access, and last-modified timestamps for filePath from the supplied CkDateTime objects. On filesystems that do not support a creation/birth time, createTime is ignored.
SetLastModified
# lastModified is a CkDateTime
retBool = fileAccess.SetLastModified(filePath, lastModified);
Sets the last-modified timestamp of filePath from lastModified. The precision actually stored depends on the underlying filesystem.
SplitFile
# partPrefix is a string
# partExtension is a string
# partSize is an integer
# destDir is a string
status = fileAccess.SplitFile(fileToSplit, partPrefix, partExtension, partSize, destDir);
Splits fileToSplit into sequential binary parts of up to partSize bytes and writes them to destDir using partPrefix and partExtension. Use ReassembleFile to reconstruct the original file.
Returns True for success, False for failure.
SymlinkCreate
# linkPath is a string
status = fileAccess.SymlinkCreate(targetPath, linkPath);
Creates a symbolic link at linkPath that refers to targetPath.
Returns True for success, False for failure.
SymlinkTarget
# outStr is a CkString (output)
status = fileAccess.SymlinkTarget(linkPath, outStr);
retStr = fileAccess.symlinkTarget(linkPath);
Returns the resolved target pathname for the symbolic link at linkPath. On Windows, this method also understands Windows shortcut (.lnk) files and returns the absolute target path.
Returns True for success, False for failure.
TreeDelete
status = fileAccess.TreeDelete(path);
Recursively deletes the directory tree rooted at path, including contained files and subdirectories.
path identifies the intended tree before calling it.Returns True for success, False for failure.
topTruncate
Truncates the currently open file at the current file position. Bytes at and after that position are removed, making the current position the new end-of-file.
Truncate.Returns True for success, False for failure.
topWriteEntireTextFile
# textData is a string
# charset is a string
# includedPreamble is a boolean
status = fileAccess.WriteEntireTextFile(filePath, textData, charset, includedPreamble);
Creates or opens filePath, encodes textData using charset, writes the resulting bytes, and closes the file. Existing file content is replaced. If includePreamble is True, an appropriate preamble/BOM is included for encodings such as UTF-8 or UTF-16.
Returns True for success, False for failure.
Deprecated
FileRead Deprecated
# outBytes is a CkByteData (output)
status = fileAccess.FileRead(maxNumBytes, outData);
Reads up to maxNumBytes bytes from the current file position and advances the file position by the number of bytes actually read. An empty byte array is returned on error.
EndOfFile when the caller needs to distinguish EOF state explicitly.Returns True for success, False for failure.
topFileWrite Deprecated
Writes all bytes in data at the current file position and advances the position accordingly.
Returns True for success, False for failure.
topGetFileTime
# path is a string
# which is an integer
ret_ckDateTime = fileAccess.GetFileTime(path, which);
Deprecated. Use GetFileTimeStr instead.
Returns one file timestamp as a CkDateTime, selected by which: 0 = last-modified, 1 = last-access, 2 = creation.
Returns None on failure
GetLastModified
Deprecated. Use GetFileTimeStr instead.
Returns the last-modified date/time for path as a CkDateTime. The documented resolution of this legacy method is one second.
Returns None on failure
ReadBlock Deprecated
# blockSize is an integer
# outBytes is a CkByteData (output)
status = fileAccess.ReadBlock(blockIndex, blockSize, outData);
Reads the zero-based block blockIndex from the currently open file, where each block is blockSize bytes. If the final block is shorter than blockSize, only the remaining bytes are returned.
Returns True for success, False for failure.
topReadEntireFile Deprecated
# outBytes is a CkByteData (output)
status = fileAccess.ReadEntireFile(filePath, outData);
Reads the entire file at filePath as raw bytes and returns the binary data.
OpenForRead together with FileReadBd or block-oriented methods.Returns True for success, False for failure.
topWriteEntireFile Deprecated
# fileData is a CkByteData
status = fileAccess.WriteEntireFile(filePath, fileData);
Creates or opens filePath, writes all bytes from fileData, and closes the file. Existing file content is replaced.
Returns True for success, False for failure.
top