Python根据操作系统自动调用创建文件目录小脚本
工作中经常碰到这种情况:脚本开发是在本地(Windows),然后等脚本写好测好后放到生产服务器(Linux)。这就涉及到脚本在两种操作系统上的迁移和文件目录使用问题。以下小脚本虽然简单但还是很实用的。
import os
import platform
# set path
def doc_path():
if platform.system() == "Linux":
if os.path.exists("/root/"):
pass
else:
os.makedirs("/root/")
return "/root/"
elif platform.system() == "Windows":
if os.path.exists("D:/script/"):
pass
else:
os.makedirs("D:/script/")
return "D:/script/"
else:
exit()
相关推荐
wadetutu 2020-06-09
旭灿 2020-09-30
WenCoo 2020-09-16
TuxedoLinux 2020-08-28
hongsheyoumo 2020-08-19
wintelx 2020-08-09
insularisland 2020-08-09
cwgxiaoguizi 2020-08-09
benico 2020-07-28
nebulali 2020-07-26
chenkai00 2020-07-26
tengyuan 2020-07-26
zhongcanw 2020-07-25
89590098 2020-07-19
dongfangxiaozi 2020-07-19
学峰的学习笔记 2020-07-18
深井兮兮 2020-07-18