eolas/neuron/34679fdf-5a10-42d3-941d-d835c4b29c36/File_CRUD_operations_in_Python.md

25 lines
407 B
Markdown
Raw Normal View History

2024-10-25 09:51:23 +01:00
---
tags: [python, file-system, procedural]
created: Friday, October 25, 2024
---
# File CRUD operations in Python
Most create, delete, move etc operations invoke the inbuilt `os` module.
// Add directory CRUD operations in Python
## Renaming files (moving)
```py
import os
os.rename('original-file-name.txt', 'new-file-name.txt')
```
## Deleting files
```py
import os
os.remove('file-name.txt')
```