“Python Find Dir” Ответ

Python Get Dir

import os 
#full path
dir_path = os.path.dirname(os.path.realpath(__file__))

#current dir
cwd = os.getcwd()
mrjakobdk

Python найти каталог файла

import os
  
print('File name :    ', os.path.basename(__file__))
print('Directory Name:     ', os.path.dirname(__file__))
Confused Cobra

Python Find Dir

import os.path
from os import path

def main():

	print ("Is it File?" + str(path.isfile('guru99.txt')))
	print ("Is it File?" + str(path.isfile('myDirectory')))
if __name__== "__main__":
	main()
Tense Termite

Ответы похожие на “Python Find Dir”

Вопросы похожие на “Python Find Dir”

Больше похожих ответов на “Python Find Dir” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования