-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrwfiles.py
179 lines (127 loc) · 4.79 KB
/
rwfiles.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
# Reading and Writing Files
'''from pathlib import Path
print(Path('spam', 'bacon', 'eggs'))
print(str(Path('spam', 'bacon', 'eggs')))
#Join names from a list of filenames to end of a folder's name:
myFiles = ['accounts.txt', 'details.csv', 'invite.docx']
for filename in myFiles:
print(Path('C:\\Users\\Mobarok', filename))
from pathlib import Path
print(Path('spam') / 'bacon' / 'eggs')
print(Path('spam') / Path('bacon/eggs'))
print(Path('spam') / Path('bacon', 'eggs'))
homeFolder = Path('C:/Users/Mobarok')
subFolder = Path('spam')
print(homeFolder / subFolder / 'eggs.txt')
import os
print(Path.cwd())
#os.chdir('C:\\Windows\\System32')
print(Path.cwd())
print(Path.home())
import os
print(os.path.abspath('.'))
print(os.path.isabs('.'))
print(os.path.isabs(os.path.abspath('.')))
p = Path('C:/User/Mobarok/spam.txt')
print(p.anchor)
print(p.parent)
print(p.name)
print(p.stem)
print(p.suffix)
print(p.drive)
print(Path.cwd())
print(Path.cwd().parents[0])
print(Path.cwd().parents[1])
calcFilePath = 'C:\\Windows\\System32\\calc.exe'
print(os.path.basename(calcFilePath))
print(os.path.dirname(calcFilePath))
print(os.path.split(calcFilePath))
print(calcFilePath.split(os.sep))
print(os.path.getsize('C:\\Windows\\System32\\calc.exe'))
#print(os.listdir('C:\\Windows\\System32'))
totalSize = 0
for filename in os.listdir('C:\\Windows\\System32'):
totalSize = totalSize + os.path.getsize(os.path.join('C:\\Windows\\System32', filename))
print(totalSize)
import glob
files = glob.glob("*.txt") # Find all .txt files in the current directory
print(files)
# Find files with a specific pattern
log_files = glob.glob("log_?.txt") # Matches log_1.txt, log_2.txt, etc.
print(log_files)'''
'''winDir = Path('C:/Windows')
notExistDir = Path('C:/This/Folder/Does/Not/Exist')
calcFile = Path('C:/Windows/System32/calc.exe')
print(winDir.exists()) # True
print(notExistDir.exists()) # False
print(calcFile.exists()) # True
print(calcFile.is_file()) # True
print(calcFile.is_dir()) # False
from pathlib import Path
p = Path('spam.txt')
print(p.write_text('Hello, world?'))
print(p.read_text())
#First we have created a text file in our home folder outside of coding
helloFile = open(Path.home() / 'hello.txt') # It will open the file in read mode
#When a file is opend in read mode, you can't write or modify it. However, if we pass a string value 'r' as a second argument to open()
helloContent = helloFile.read()
print(helloContent)
sonnetFile = open(Path.home() / 'sonnet29.txt')
print(sonnetFile.readlines())
baconFile = open('bacon.txt', 'w')
baconFile.write('Hello, Siam!\n')
baconFile.close()
baconFile = open('bacon.txt', 'a')
baconFile.write('Bacon is not a vegetable.')
baconFile.close()
baconFile = open('bacon.txt')
content = baconFile.read()
baconFile.close()
print(content)'''
'''import shelve
# Open a shelve file (creates one if it doesn’t exist)
with shelve.open("mydata") as db:
db["name"] = "Mobarok Sarker" # String
db["age"] = 20 # Integer
db["hobbies"] = ["Photography", "Programming"] # List
print("Data stored successfully!")
# Open the shelve file in read mode
with shelve.open("mydata") as db:
print("Name:", db["name"])
print("Age:", db["age"])
print("Hobbies:", db["hobbies"])
with shelve.open("mydata", writeback=True) as db:
db["age"] = 21 # Modify existing data
db["hobbies"].append("Gaming") # Modify list inside shelve
print("Data updated!")
with shelve.open("mydata") as db:
print(list(db.keys())) # Output: ['name', 'age', 'hobbies']
with shelve.open("mydata") as db:
print(list(db.values())) # Output: ['Mobarok Sarker', 21, ['Photography', 'Programming', 'Gaming']]
with shelve.open("mydata") as db:
if "name" in db:
print("Key found!")
with shelve.open("mydata") as db:
del db["age"]
print("Age deleted!")
import shelve
# Open shelve file
db = shelve.open("myData")
# Store data
db["name"] = "Mobarok Sarker"
db["age"] = 20
# Close the file manually
db.close()'''
'''import pprint
data = {"name": "Mobarok", "age": 20, "hobbies": ["Photography", "Coding"]}
formatted_data = pprint.pformat(data) # Converts the dictionary into a formatted string
print(formatted_data) # See the output'''
import pprint
data = {"name": "Mobarok", "age": 20, "hobbies": ["Photography", "Coding"]}
# Convert dictionary to a formatted string
formatted_data = pprint.pformat(data)
# Save it to a Python file
with open("mydata.py", "w") as file:
file.write(f"data = {formatted_data}\n") # Save as a Python variable
import mydata
print(mydata.data) # Access the stored dictionary