FileSystem
Section titled “FileSystem”Provides file system operations within a Sandbox.
Constructors
Section titled “Constructors”new FileSystem()
Section titled “new FileSystem()”new FileSystem(clientConfig: Configuration, apiClient: FileSystemApi): FileSystemParameters:
clientConfigConfigurationapiClientFileSystemApi
Returns:
FileSystem
Methods
Section titled “Methods”createFolder()
Section titled “createFolder()”createFolder(path: string, mode: string): Promise<void>Create a new directory in the Sandbox with specified permissions.
Parameters:
pathstring - Path where the directory should be created. Relative paths are resolved based on the sandbox working directory.modestring - Directory permissions in octal format (e.g. “755”)
Returns:
Promise<void>
Example:
// Create a directory with standard permissionsawait fs.createFolder('app/data', '755');deleteFile()
Section titled “deleteFile()”deleteFile(path: string, recursive?: boolean): Promise<void>Deletes a file or directory from the Sandbox.
Parameters:
pathstring - Path to the file or directory to delete. Relative paths are resolved based on the sandbox working directory.recursive?boolean - If the file is a directory, this must be true to delete it.
Returns:
Promise<void>
Example:
// Delete a fileawait fs.deleteFile('app/temp.log');downloadFile()
Section titled “downloadFile()”Call Signature
Section titled “Call Signature”downloadFile(remotePath: string, timeout?: number): Promise<Buffer<ArrayBufferLike>>Downloads a file from the Sandbox. This method loads the entire file into memory, so it is not recommended for downloading large files.
Parameters:
remotePathstring - Path to the file to download. Relative paths are resolved based on the sandbox working directory.timeout?number - Timeout for the download operation in seconds. 0 means no timeout. Default is 30 minutes.
Returns:
Promise<Buffer<ArrayBufferLike>>- The file contents as a Buffer.
Example:
// Download and process a fileconst fileBuffer = await fs.downloadFile('tmp/data.json');console.log('File content:', fileBuffer.toString());Call Signature
Section titled “Call Signature”downloadFile( remotePath: string, localPath: string,timeout?: number): Promise<void>Downloads a file from the Sandbox and saves it to a local file. This method uses streaming to download the file, so it is recommended for downloading larger files.
Parameters:
remotePathstring - Path to the file to download in the Sandbox. Relative paths are resolved based on the sandbox working directory.localPathstring - Path to save the downloaded file.timeout?number - Timeout for the download operation in seconds. 0 means no timeout. Default is 30 minutes.
Returns:
Promise<void>
Example:
// Download and save a fileawait fs.downloadFile('tmp/data.json', 'local_file.json');downloadFiles()
Section titled “downloadFiles()”downloadFiles(files: FileDownloadRequest[], timeoutSec?: number): Promise<FileDownloadResponse[]>Downloads multiple files from the Sandbox. If the files already exist locally, they will be overwritten.
Parameters:
filesFileDownloadRequest[] - Array of file download requests.timeoutSec?number = … - Timeout for the download operation in seconds. 0 means no timeout. Default is 30 minutes.
Returns:
Promise<FileDownloadResponse[]>- Array of download results.
Throws:
If the request itself fails (network issues, invalid request/response, etc.). Individual
file download errors are returned in FileDownloadResponse.error. When the daemon provides structured
per-file metadata, it is also available in FileDownloadResponse.errorDetails.
Example:
// Download multiple filesconst results = await fs.downloadFiles([ { source: 'tmp/data.json' }, { source: 'tmp/config.json', destination: 'local_config.json' }]);results.forEach(result => { if (result.error) { console.error(`Error downloading ${result.source}: ${result.error}`); } else if (result.result) { console.log(`Downloaded ${result.source} to ${result.result}`); }});downloadFileStream()
Section titled “downloadFileStream()”Call Signature
Section titled “Call Signature”downloadFileStream(remotePath: string, timeout?: number): Promise<Readable>Downloads a single file from the Sandbox as a readable stream without buffering the entire file into memory. The returned stream can be piped directly to an HTTP response, a file write stream, or any other writable destination.
This method is only supported in Node.js-compatible runtimes (Node.js, Bun). Browser and serverless environments should use downloadFile instead.
Parameters:
remotePathstring - Path to the file in the Sandbox. Relative paths are resolved based on the sandbox working directory.timeout?number
Returns:
Promise<Readable>- A Node.js Readable stream of the file content.
Examples:
// Pipe directly to an HTTP responseconst stream = await sandbox.fs.downloadFileStream('outputs/report.pdf');stream.pipe(res);// Download with progress tracking and cancellationconst controller = new AbortController();const stream = await sandbox.fs.downloadFileStream('outputs/large-file.bin', { signal: controller.signal, onProgress: ({ bytesReceived, totalBytes }) => console.log(bytesReceived, totalBytes),});stream.pipe(createWriteStream('local-file.bin'));Call Signature
Section titled “Call Signature”downloadFileStream(remotePath: string, options?: DownloadStreamOptions): Promise<Readable>Downloads a single file from the Sandbox as a readable stream without buffering the entire file into memory. The returned stream can be piped directly to an HTTP response, a file write stream, or any other writable destination.
This method is only supported in Node.js-compatible runtimes (Node.js, Bun). Browser and serverless environments should use downloadFile instead.
Parameters:
remotePathstring - Path to the file in the Sandbox. Relative paths are resolved based on the sandbox working directory.options?DownloadStreamOptions
Returns:
Promise<Readable>- A Node.js Readable stream of the file content.
Examples:
// Pipe directly to an HTTP responseconst stream = await sandbox.fs.downloadFileStream('outputs/report.pdf');stream.pipe(res);// Download with progress tracking and cancellationconst controller = new AbortController();const stream = await sandbox.fs.downloadFileStream('outputs/large-file.bin', { signal: controller.signal, onProgress: ({ bytesReceived, totalBytes }) => console.log(bytesReceived, totalBytes),});stream.pipe(createWriteStream('local-file.bin'));findFiles()
Section titled “findFiles()”findFiles(path: string, pattern: string): Promise<Match[]>Searches for text patterns within files in the Sandbox.
Parameters:
pathstring - Directory to search in. Relative paths are resolved based on the sandbox working directory.patternstring - Search pattern
Returns:
Promise<Match[]>- Array of matches with file and line information
Example:
// Find all TODO comments in TypeScript filesconst matches = await fs.findFiles('app/src', 'TODO:');matches.forEach(match => { console.log(`${match.file}:${match.line}: ${match.content}`);});getFileDetails()
Section titled “getFileDetails()”getFileDetails(path: string): Promise<FileInfo>Retrieves detailed information about a file or directory.
Parameters:
pathstring - Path to the file or directory. Relative paths are resolved based on the sandbox working directory.
Returns:
Promise<FileInfo>- Detailed file information including size, permissions, modification time
Example:
// Get file detailsconst info = await fs.getFileDetails('app/config.json');console.log(`Size: ${info.size}, Modified: ${info.modTime}`);listFiles()
Section titled “listFiles()”listFiles(path: string): Promise<FileInfo[]>Lists contents of a directory in the Sandbox.
Parameters:
pathstring - Directory path to list. Relative paths are resolved based on the sandbox working directory.
Returns:
Promise<FileInfo[]>- Array of file and directory information
Example:
// List directory contentsconst files = await fs.listFiles('app/src');files.forEach(file => { console.log(`${file.name} (${file.size} bytes)`);});moveFiles()
Section titled “moveFiles()”moveFiles(source: string, destination: string): Promise<void>Moves or renames a file or directory.
Parameters:
sourcestring - Source path. Relative paths are resolved based on the sandbox working directory.destinationstring - Destination path. Relative paths are resolved based on the sandbox working directory.
Returns:
Promise<void>
Example:
// Move a file to a new locationawait fs.moveFiles('app/temp/data.json', 'app/data/data.json');replaceInFiles()
Section titled “replaceInFiles()”replaceInFiles( files: string[], pattern: string,newValue: string): Promise<ReplaceResult[]>Replaces text content in multiple files.
Parameters:
filesstring[] - Array of file paths to process. Relative paths are resolved based on the sandbox working directory.patternstring - Pattern to replacenewValuestring - Replacement text
Returns:
Promise<ReplaceResult[]>- Results of the replace operation for each file
Example:
// Update version number across multiple filesconst results = await fs.replaceInFiles( ['app/package.json', 'app/version.ts'], '"version": "1.0.0"', '"version": "1.1.0"');searchFiles()
Section titled “searchFiles()”searchFiles(path: string, pattern: string): Promise<SearchFilesResponse>Searches for files and directories by name pattern in the Sandbox.
Parameters:
pathstring - Directory to search in. Relative paths are resolved based on the sandbox working directory.patternstring - File name pattern (supports globs)
Returns:
Promise<SearchFilesResponse>- Search results with matching files
Example:
// Find all TypeScript filesconst result = await fs.searchFiles('app', '*.ts');result.files.forEach(file => console.log(file));setFilePermissions()
Section titled “setFilePermissions()”setFilePermissions(path: string, permissions: FilePermissionsParams): Promise<void>Sets permissions and ownership for a file or directory.
Parameters:
pathstring - Path to the file or directory. Relative paths are resolved based on the sandbox working directory.permissionsFilePermissionsParams - Permission settings
Returns:
Promise<void>
Example:
// Set file permissions and ownershipawait fs.setFilePermissions('app/script.sh', { owner: 'daytona', group: 'users', mode: '755' // Execute permission for shell script});uploadFile()
Section titled “uploadFile()”Call Signature
Section titled “Call Signature”uploadFile( file: Buffer, remotePath: string,timeout?: number): Promise<void>Uploads a file to the Sandbox. This method loads the entire file into memory, so it is not recommended for uploading large files.
Parameters:
fileBuffer - Buffer of the file to upload.remotePathstring - Destination path in the Sandbox. Relative paths are resolved based on the sandbox working directory.timeout?number - Timeout for the upload operation in seconds. 0 means no timeout. Default is 30 minutes.
Returns:
Promise<void>
Example:
// Upload a configuration fileawait fs.uploadFile(Buffer.from('{"setting": "value"}'), 'tmp/config.json');Call Signature
Section titled “Call Signature”uploadFile( localPath: string, remotePath: string,timeout?: number): Promise<void>Uploads a file from the local file system to the Sandbox. This method uses streaming to upload the file, so it is recommended for uploading larger files.
Parameters:
localPathstring - Path to the local file to upload.remotePathstring - Destination path in the Sandbox. Relative paths are resolved based on the sandbox working directory.timeout?number - Timeout for the upload operation in seconds. 0 means no timeout. Default is 30 minutes.
Returns:
Promise<void>
Example:
// Upload a local fileawait fs.uploadFile('local_file.txt', 'tmp/file.txt');uploadFiles()
Section titled “uploadFiles()”uploadFiles(files: FileUpload[], timeout?: number): Promise<void>Uploads multiple files to the Sandbox. If files already exist at the destination paths, they will be overwritten.
Parameters:
filesFileUpload[] - Array of files to upload.timeout?number = … - Timeout for the upload operation in seconds. 0 means no timeout. Default is 30 minutes.
Returns:
Promise<void>
Example:
// Upload multiple text filesconst files = [ { source: Buffer.from('Content of file 1'), destination: '/tmp/file1.txt' }, { source: 'app/data/file2.txt', destination: '/tmp/file2.txt' }, { source: Buffer.from('{"key": "value"}'), destination: '/tmp/config.json' }];await fs.uploadFiles(files);uploadFileStream()
Section titled “uploadFileStream()”uploadFileStream( source: UploadSource, remotePath: string,options?: UploadStreamOptions): Promise<void>Uploads a single file to the Sandbox using true streaming, with optional progress tracking and cancellation. Memory usage stays flat regardless of source size: the SDK pipes the source through a transform that counts bytes and forwards to the underlying multipart upload without buffering the whole payload. The HTTP layer uses chunked transfer encoding, so the source’s natural EOF terminates the upload — no advance size is needed.
Parameters:
sourceUploadSource - The data to upload. Accepts the sameBuffer | stringinputs as FileSystem.uploadFile, plus NodeReadablestreams and WebReadableStreaminstances. When a string is passed, it is treated as a local file path and read in streaming chunks.remotePathstring - Destination path in the Sandbox. Relative paths are resolved against the sandbox working directory.options?UploadStreamOptions = - Streaming options: AbortSignal, onProgress callback, timeout.
Returns:
Promise<void>
Example:
// Upload a 2 GB file with progress tracking and the ability to cancelimport { createReadStream } from 'fs';const controller = new AbortController();await sandbox.fs.uploadFileStream(createReadStream('big.bin'), 'tmp/big.bin', { signal: controller.signal, onProgress: ({ bytesSent }) => console.log(`${bytesSent} bytes sent`),});DownloadMetadata
Section titled “DownloadMetadata”Represents metadata for a file download operation.
Properties:
destination?string - Destination path in the local filesystem where the file content will be streamed to.error?string - Error message if the download failed, undefined if successful.errorDetails?FileDownloadErrorDetails - Structured error metadata for a failed download item.result?string | Buffer<ArrayBufferLike> | Uint8Array<ArrayBufferLike> - The download result - file path (if destination provided in the request) or bytes content (if no destination in the request), undefined if failed or no data received.
DownloadStreamOptions
Section titled “DownloadStreamOptions”Options for streaming file downloads.
Properties:
-
onProgress()?(progress: DownloadProgress) => void - Callback invoked with cumulative progress information.Parameters:
progressDownloadProgress
Returns:
void
-
signal?AbortSignal - AbortSignal for cancelling the download. -
timeout?number - Timeout in seconds. 0 means no timeout. Default is 30 minutes.
FileDownloadErrorDetails
Section titled “FileDownloadErrorDetails”Structured error metadata for a failed bulk file download item.
Properties:
errorCode?string - Machine-readable error code for the per-file failure.messagestring - Human-readable error message.statusCode?number - HTTP-style status code for the per-file failure.
FileDownloadRequest
Section titled “FileDownloadRequest”Represents a request to download a single file from the Sandbox.
Properties:
destination?string - Destination path in the local filesystem where the file content will be streamed to. If not provided, the file will be downloaded in the bytes buffer (might cause memory issues if the file is large).sourcestring - Source path in the Sandbox. Relative paths are resolved based on the user’s root directory.
FileDownloadResponse
Section titled “FileDownloadResponse”Represents the response to a single file download request.
Properties:
error?string - Error message if the download failed, undefined if successful.errorDetails?FileDownloadErrorDetails - Structured error metadata when the server provides it.result?string | Buffer<ArrayBufferLike> - The download result - file path (if destination provided in the request) or bytes content (if no destination in the request), undefined if failed or no data received.sourcestring - The original source path requested for download.
FilePermissionsParams
Section titled “FilePermissionsParams”Parameters for setting file permissions in the Sandbox.
Properties:
group?string - Group owner of the filemode?string - File mode/permissions in octal format (e.g. “644”)owner?string - User owner of the file
Example:
const permissions: FilePermissionsParams = { mode: '644', owner: 'daytona', group: 'users'};FileUpload
Section titled “FileUpload”Represents a file to be uploaded to the Sandbox.
Properties:
destinationstring - Absolute destination path in the Sandbox. Relative paths are resolved based on the sandbox working directory.sourcestring | Buffer<ArrayBufferLike> - File to upload. If a Buffer, it is interpreted as the file content which is loaded into memory. Make sure it fits into memory, otherwise use the local file path which content will be streamed to the Sandbox.
UploadStreamOptions
Section titled “UploadStreamOptions”Options for streaming file uploads.
Properties:
-
onProgress()?(progress: UploadProgress) => void - Callback invoked with cumulative progress information.Parameters:
progressUploadProgress
Returns:
void
-
signal?AbortSignal - AbortSignal for cancelling the upload. -
timeout?number - Timeout in seconds. 0 means no timeout. Default is 30 minutes.
DownloadProgress
Section titled “DownloadProgress”type DownloadProgress = { bytesReceived: number; totalBytes: number;};Type declaration:
bytesReceivednumber - Cumulative bytes received so far.totalBytes?number - Total bytes expected, if known. Undefined if unavailable.
UploadProgress
Section titled “UploadProgress”type UploadProgress = { bytesSent: number;};Type declaration:
bytesSentnumber - Cumulative bytes sent so far.
UploadSource
Section titled “UploadSource”type UploadSource = Buffer | Uint8Array | string | Readable | ReadableStream<Uint8Array>;Source for a streaming file upload. The same input shapes accepted by
FileSystem.uploadFile are also valid here, plus Node Readable
streams and Web ReadableStream instances.