我该如何改变目录以到达包含我的Python脚本的目录?到目前为止,我想到了使用os.chdir
和sys.argv [0]
。我确信有更好的方式,而不是编写自己的函数来解析argv [0]。
转到Python脚本的目录。
原标题:
最佳回答
os.chdir(os.path.dirname(__file__))
问题回答
os.chdir(os.path.dirname(os.path.abspath(__file__)))
应该可以实现。
如果脚本在其所在的目录中运行,则 os.chdir(os.path.dirname(__file__))
无法工作。
(Translated by an AI language model)
有时候__file__
没有定义,在这种情况下你可以尝试使用sys.path[0]
。
在Windows操作系统上,如果您调用类似 python somefile.py 的东西, os.chdir(os.path.dirname(__file__)) 将引发WindowsError。 但是这应该适用于所有情况:
import os
absFilePath = os.path.abspath(__file__)
os.chdir( os.path.dirname(absFilePath) )
相关问题
热门标签
- winforms
- combobox
- fogbugz
- java
- date
- internationalization
- asp.net
- iis
- url-rewriting
- urlrewriter
- c#
- enums
- ocaml
- haxe
- algorithm
- string
- viewstate
- .net
- c++
- c
- symbol-table
- mysql
- database
- postgresql
- licensing
- migration
- vb.net
- vb6
- declaration
- vb6-migration
- python
- psycopg2
- backup
- vmware
- virtualization
- gnu-screen
- authentication
- desktop
- excel
- xll
- cultureinfo
- regioninfo
- oracle
- client
- session
- download
- html
- virtual
- constructor
- scenarios
- perl
- full-text-search
- javascript
- ajax
- testing
- oop
- inheritance
- vim
- encapsulation
- information-hiding