python 来自Python的os文件系统

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 来自Python的os文件系统相关的知识,希望对你有一定的参考价值。

"""
Launch bash command

input:
-sbashCommand[str]: command to be executed
output[str]: confirmation or output
"""
def launch(sbashCommand):
    import subprocess
    try:
        return subprocess.check_output(['bash','-c', sbashCommand])
    except Exception as e:
        print(str(e))
        return None
       

"""
Create folder if not exists

input:
-folder[str]: folder to be created
"""
def mkdiros(folder):
  import os
  if not os.path.exists(folder):
      os.makedirs(folder)
    

"""
Delete file/folder if exits

input: 
-path[str]:path to be deleted
"""
def delos(path):    
  import os
  try:
      os.remove(path)
  except OSError:
      pass

以上是关于python 来自Python的os文件系统的主要内容,如果未能解决你的问题,请参考以下文章

Python os 方法指南

[python]OS文件系统

python学习第七天--文件系统常用模块os,os.path,pickle

python pathlib模块(面向对象的文件系统路径)

Python常用模块——系统调用os模块

python之OS模块