Заходить надо через впн с американскими айпишниками
Are you a fan of the hit TV show 'The X-Files' and the enigmatic character Dana Scully? If so, then you have come to the right place! Join us on the Telegram channel '@xbshsuwiow83' where we celebrate all things related to Dana Scully, the brilliant FBI agent portrayed by Gillian Anderson. From discussing her iconic moments on the show to exploring her complex character development, this channel is a haven for true fans of Dana Scully. Connect with like-minded individuals, share your favorite Scully quotes, and stay updated on any news related to 'The X-Files' universe. Whether you're a long-time fan or a newcomer to the series, there's something for everyone on the Dana Scully Telegram channel. Join us today and immerse yourself in the world of mystery, science fiction, and the unbreakable spirit of Dana Scully!
19 Nov, 09:51
18 Nov, 16:20
11 Nov, 13:08
07 Nov, 06:49
07 Nov, 06:37
31 Oct, 11:29
31 Oct, 03:40
30 Oct, 11:49
30 Oct, 10:45
24 Oct, 11:26
24 Oct, 10:13
23 Oct, 08:58
22 Oct, 11:25
16 Oct, 02:29
16 Oct, 02:12
14 Oct, 14:53
12 Oct, 05:53
04 Oct, 19:35
23 Sep, 11:44
20 Sep, 08:48
import os
def print_tree(directory, file_writer, indent=''):
files = os.listdir(directory)
files.sort()
for index, file in enumerate(files):
path = os.path.join(directory, file)
is_last = index == len(files) - 1
if os.path.isdir(path):
file_writer.write(indent + ('└── ' if is_last else '├── ') + file + '/\n')
print_tree(path, file_writer, indent + (' ' if is_last else '│ '))
else:
file_writer.write(indent + ('└── ' if is_last else '├── ') + file + '\n')
root_directory = 'указываем_путь_к_папке'
with open('directory_structure.txt', 'w', encoding='utf-8') as file_writer:
print_tree(root_directory, file_writer)
print("Структура директории сохранена в файл 'directory_structure.txt'")
tree %path% > file.txt
19 Sep, 17:00
13 Sep, 09:37
09 Sep, 13:43
09 Sep, 06:56