Skip to content

File System Operations

The Daytona SDK provides comprehensive file system operations through the fs module in Sandboxes. This guide covers all available file system operations and best practices.

Basic Operations

Daytona SDK provides an option to interact with the file system in Sandboxes. You can perform various operations like listing files, creating directories, reading and writing files, and more.

File operations assume you are operating in the Sandbox user’s home directory (e.g. workspace implies /home/[username]/workspace). Use a leading / when providing absolute paths.

Listing Files and Directories

Daytona SDK provides an option to list files and directories in a Sandbox using Python and TypeScript.

# List files in a directory
files = sandbox.fs.list_files("workspace")
for file in files:
print(f"Name: {file.name}")
print(f"Is directory: {file.is_dir}")
print(f"Size: {file.size}")
print(f"Modified: {file.mod_time}")

See: list_files (Python SDK), listFiles (TypeScript SDK)

Creating Directories

Daytona SDK provides an option to create directories with specific permissions using Python and TypeScript.

# Create with specific permissions
sandbox.fs.create_folder("workspace/new-dir", "755")

See: create_folder (Python SDK), createFolder (TypeScript SDK)

Uploading Files

Daytona SDK provides options to read, write, upload, download, and delete files in Sandboxes using Python and TypeScript.

Uploading a Single File

The following example shows how to upload a single file:

# Upload a single file
with open("local_file.txt", "rb") as f:
content = f.read()
sandbox.fs.upload_file(content, "remote_file.txt")

See: upload_file (Python SDK), uploadFile (TypeScript SDK)

Uploading Multiple Files

The following example shows how to efficiently upload multiple files with a single method call.

# Upload multiple files at once
files_to_upload = []
with open("file1.txt", "rb") as f1:
files_to_upload.append(FileUpload(
source=f1.read(),
destination="data/file1.txt",
))
with open("file2.txt", "rb") as f2:
files_to_upload.append(FileUpload(
source=f2.read(),
destination="data/file2.txt",
))
with open("settings.json", "rb") as f3:
files_to_upload.append(FileUpload(
source=f3.read(),
destination="config/settings.json",
))
sandbox.fs.upload_files(files_to_upload)

See: upload_files (Python SDK), uploadFiles (TypeScript SDK)

Downloading Files

Downloading a Single File

The following commands downloads a single file file1.txt from the Sandbox working directory and prints out the content:

content = sandbox.fs.download_file("file1.txt")
with open("local_file.txt", "wb") as f:
f.write(content)
print(content.decode('utf-8'))

See: download_file (Python SDK), downloadFile (TypeScript SDK)

Downloading Multiple Files

The following example shows how to efficiently download multiple files with a single method call.

# Download multiple files at once
files_to_download = [
FileDownloadRequest(source="data/file1.txt"), # No destination - download to memory
FileDownloadRequest(source="data/file2.txt", destination="local_file2.txt"), # Download to local file
]
results = sandbox.fs.download_files(files_to_download)
for result in results:
if result.error:
print(f"Error downloading {result.source}: {result.error}")
elif result.result:
print(f"Downloaded {result.source} to {result.result}")

See: download_files (Python SDK), downloadFiles (TypeScript SDK)

Deleting files

The following example shows how to delete a file:

sandbox.fs.delete_file("workspace/file.txt")

See: delete_file (Python SDK), deleteFile (TypeScript SDK)

Advanced Operations

Daytona SDK provides advanced file system operations like file permissions, search and replace, and more.

File Permissions

Daytona SDK provides an option to set file permissions, get file permissions, and set directory permissions recursively using Python and TypeScript.

# Set file permissions
sandbox.fs.set_file_permissions("workspace/file.txt", "644")
# Get file permissions
file_info = sandbox.fs.get_file_info("workspace/file.txt")
print(f"Permissions: {file_info.permissions}")

See: set_file_permissions (Python SDK), setFilePermissions (TypeScript SDK)

File Search and Replace

Daytona SDK provides an option to search for text in files and replace text in files using Python and TypeScript.

# Search for text in files; if a folder is specified, the search is recursive
results = sandbox.fs.find_files(
path="workspace/src",
pattern="text-of-interest"
)
for match in results:
print(f"Absolute file path: {match.file}")
print(f"Line number: {match.line}")
print(f"Line content: {match.content}")
print("\n")
# Replace text in files
sandbox.fs.replace_in_files(
files=["workspace/file1.txt", "workspace/file2.txt"],
pattern="old_text",
new_value="new_text"
)

See: find_files (Python SDK), replace_in_files (Python SDK), findFiles (TypeScript SDK), replaceInFiles (TypeScript SDK)