how do i get current working directory in atom

喜你入骨 提交于 2020-05-14 07:19:25

问题


In atom, os.getcwd() always returns D:\WorkSpace\Test. So if I do things like open("01.txt"), it cannot find the file.

Also, this happens when using the "script" package to execute in Atom, But when executing the actual python file, it works.

I have found several other asking the same question, like this, but there is still no resolution.

Thanks to everyone who tried to help!

Added my directory:

D:\WorkSpace\Test
D:\WorkSpace\Test\01\01.py
D:\WorkSpace\Test\01\01.txt
 or  
D:\WorkSpace\Test
                └─01
                    └─ 01.py
                    └─ 01.txt

Added my source:
01.py

import os
print os.getcwd()
f = open("01.txt")
print f.read()

01.txt

atom editor 01.txt

Added results(in atom):

D:\WorkSpace\Test
Traceback (most recent call last):
  File "D:\WorkSpace\Test\01\01.py", line 5, in <module>
    f = open("01.txt")
IOError: [Errno 2] No such file or directory: '01.txt'

Added results(in windows cmd):

D:\WorkSpace\Test\01>01.py
D:\WorkSpace\Test\01
atom editor 01.txt

回答1:


In Mac, I solved this kind of issue by opening ATOM from a shell window, under target directory. Seems ATOM will use the directory it inherited from shell process as its working directory. You might try with a windows cmd window, see if it works.




回答2:


Windows - go to Packages -> Settings View -> Manage Packages. Then go to System Settings on the left hand side menu and tick 'Show in file context menus'.

You can now go to your chosen directory and open any file (.js, .py etc.) with Atom and the current working directory will change to the one you chose instead of the default .atom.



来源:https://stackoverflow.com/questions/40627075/how-do-i-get-current-working-directory-in-atom

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!