資料夾操作庫os.path
官方文件The Python Standard library —os.path
獲取當前的絕對路徑:
import os
print(os.path.abspath('.'))
#常用函式的使用
#directory separator 目錄分隔符 '/'
#concatenation 串聯
#路徑中用的都是 /
import os
print(os.path.abspath('..')) #返回上一級絕對路徑
print(os.path.exists('/users')) #判斷檔案是否存在
print(os.path.isfile('/users')) #判斷是否是檔案
print(os.path.isdir('/users')) #判斷是否是目錄directory
#路徑的拼接
print(os.path.join('/temp/a/','b/c/')) #/temp/b/c
print(os.path.join('/temp/a','/b/c/')) #/b/c False
#pathlib庫
#Querying path properties: 查詢路徑屬性
from pathlib import Path
p= Path('.')
print(p.resolve())
q = Path('/tmp/a') #把q變數用Path做個封裝。。沒說賦值
Path.mkdir(q,parents=True) #建立一個新的目錄dir
相關文章
- 資料夾操作
- 資料庫操作資料庫
- 資料庫操作·資料庫
- 【Falsk 使用資料庫】---- 資料庫基本操作資料庫
- MySQL 資料庫操作MySql資料庫
- mongodb資料庫操作MongoDB資料庫
- 資料庫基本操作資料庫
- MongoDB 資料庫操作MongoDB資料庫
- laravel 資料庫操作Laravel資料庫
- 大量資料夾批次重新命名的操作
- Python科研武器庫 - 檔案/路徑操作 - 判斷檔案或資料夾Python
- 帝國cms備份的資料庫資料夾資料庫
- 值得白嫖的資料庫常用操作語句彙總(資料庫、資料表、資料操作)資料庫
- Python 操作 SQLite 資料庫PythonSQLite資料庫
- 資料庫操作語句資料庫
- django操作多資料庫Django資料庫
- postgresql 資料庫基本操作SQL資料庫
- Mysql資料庫操作命令MySql資料庫
- PHP操作MySQL資料庫PHPMySql資料庫
- Python操作SQLite資料庫PythonSQLite資料庫
- python操作mongodb資料庫PythonMongoDB資料庫
- django多資料庫操作Django資料庫
- MySQL資料庫常用操作MySql資料庫
- Linux 資料庫操作(一)Linux資料庫
- Laravel 資料庫基本操作Laravel資料庫
- Go之資料庫操作Go資料庫
- 資料庫的基本操作資料庫
- git針對指定資料夾建立版本庫Git
- 將現有資料夾推送git倉庫Git
- Python 資料庫騷操作 — RedisPython資料庫Redis
- Python 資料庫騷操作 -- RedisPython資料庫Redis
- Python 資料庫騷操作 -- MongoDBPython資料庫MongoDB
- Python資料庫MongoDB騷操作Python資料庫MongoDB
- Python之 操作 MySQL 資料庫PythonMySql資料庫
- 資料庫非同步操作資料庫非同步
- laravel筆記+資料庫操作Laravel筆記資料庫
- mysql資料庫基本操作(五)MySql資料庫
- mysql資料庫基本操作(三)MySql資料庫