File tree 2 files changed +44
-0
lines changed
2 files changed +44
-0
lines changed Original file line number Diff line number Diff line change
1
+ carlosito ;24
2
+ andressi ;24
3
+ afonsão ;26
4
+ marcilada ;35
Original file line number Diff line number Diff line change
1
+ from MiniSystem .system import *
2
+ from MiniSystem import *
3
+ import MiniSystem
4
+ # import Mundo
5
+ arq = "FileSystem.txt"
6
+
7
+
8
+ # def filExist(nome):
9
+ # try:
10
+ # a = open(nome, "rt")
11
+ # a.close()
12
+ # except FileNotFoundError:
13
+ # return False
14
+ # else:
15
+ # return True
16
+ #
17
+ #
18
+ #
19
+ # def creatFile(nome):
20
+ # try:
21
+ # a = open(nome, "wt+")
22
+ # a.close()
23
+ # except:
24
+ # print("There is some problem with the create the file")
25
+ # else:
26
+ # print(f"File {nome}, created with success!")
27
+ # readFile(arq)
28
+ #
29
+ # def readFile(name):
30
+ # try:
31
+ # a = open(name, "rt")
32
+ # except:
33
+ # print("There is a problem with the program")
34
+ # else:
35
+ # menu("List of People")
36
+ # print(a.readlines())
37
+ # option()
38
+
39
+
40
+ # readFile("Ola")
You can’t perform that action at this time.
0 commit comments