markdown 查找当前目录和文件的目录

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 查找当前目录和文件的目录相关的知识,希望对你有一定的参考价值。

# Find current directory and file's directory

To get the full path to the directory a Python file is contained in, write this in that file:

```python
import os 
dir_path = os.path.dirname(os.path.realpath(__file__))
```

(Note that the incantation above won't work if you've already used os.chdir() to change your current working directory, since the value of the __file__ constant is relative to the current working directory and is not changed by an os.chdir() call.)

---

To get the current working directory use

```python
import os
cwd = os.getcwd()
```

## Reference

- https://stackoverflow.com/questions/5137497/find-current-directory-and-files-directory

以上是关于markdown 查找当前目录和文件的目录的主要内容,如果未能解决你的问题,请参考以下文章

markdown 计算当前目录中的文件

markdown 简单文件服务器为当前目录服务

markdown 简单文件服务器为当前目录服务

如何使用单个命令在当前工作目录的父目录和子目录中查找具有特定模式的文件?

linux find命令查找当前目录下7天前的文件但排除所有目录

MFC怎么查找当前目录以及子目录下的*_DS.TXT文件?