如何新建文件夹?

发布于 2024-08-01 17:56:29 字数 254 浏览 9 评论 0原文

我想将程序的输出信息放入一个文件夹中。 如果给定的文件夹不存在,则程序应创建一个新文件夹,其文件夹名称与程序中给定的文件夹名称相同。 这可能吗? 如果是,请告诉我如何做。

假设我给出了像 "C:\Program Files\alex" 这样的文件夹路径,并且 alex 文件夹不存在,那么程序应该创建 alex 文件夹并应将输出信息放在 alex 文件夹中。

I want to put output information of my program to a folder. if given folder does not exist, then the program should create a new folder with folder name as given in the program. Is this possible? If yes, please let me know how.

Suppose I have given folder path like "C:\Program Files\alex" and alex folder doesn't exist then program should create alex folder and should put output information in the alex folder.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

遗心遗梦遗幸福 2024-08-08 17:56:29

你尝试过 os.mkdir 吗?

您也可以尝试这个小代码片段:

mypath = ...
if not os.path.isdir(mypath):
   os.makedirs(mypath)

如果需要,makedirs 创建多个级别的目录。

Have you tried os.mkdir?

You might also try this little code snippet:

mypath = ...
if not os.path.isdir(mypath):
   os.makedirs(mypath)

makedirs creates multiple levels of directories, if needed.

止于盛夏 2024-08-08 17:56:29

您可能需要 os.makedirs 因为它将创建中间体如果需要的话,还有目录。

import os

#dir is not keyword
def makemydir(whatever):
  try:
    os.makedirs(whatever)
  except OSError:
    pass
  # let exception propagate if we just can't
  # cd into the specified directory
  os.chdir(whatever)

You probably want os.makedirs as it will create intermediate directories as well, if needed.

import os

#dir is not keyword
def makemydir(whatever):
  try:
    os.makedirs(whatever)
  except OSError:
    pass
  # let exception propagate if we just can't
  # cd into the specified directory
  os.chdir(whatever)
乞讨 2024-08-08 17:56:29

您可以使用 os.makedirs() 创建一个文件夹
并使用 os.path .exists() 查看它是否已经存在:

newpath = r'C:\Program Files\arbitrary' 
if not os.path.exists(newpath):
    os.makedirs(newpath)

如果您尝试制作安装程序:Windows Installer< /a> 为你做了很多工作。

You can create a folder with os.makedirs()
and use os.path.exists() to see if it already exists:

newpath = r'C:\Program Files\arbitrary' 
if not os.path.exists(newpath):
    os.makedirs(newpath)

If you're trying to make an installer: Windows Installer does a lot of work for you.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文