Browse Source

проверка существования файла

master
Mikhail Grebenkin 6 years ago
parent
commit
d3744f1851
2 changed files with 16 additions and 4 deletions
  1. +6
    -0
      .idea/vcs.xml
  2. +10
    -4
      megacli_parser/megacli_parse.py

+ 6
- 0
.idea/vcs.xml View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

+ 10
- 4
megacli_parser/megacli_parse.py View File

@ -148,12 +148,18 @@ def f_get_ld_val(num, val, source):
if __name__ == '__main__':
if len(sys.argv) == 1 or len(sys.argv) == 3 or len(sys.argv) > 4:
print("Wrong args. Cache will be updated if necessary")
stat_pd = os.stat(pd_file)
stat_ld = os.stat(ld_file)
if (float(time.time()) - float(stat_pd.st_ctime)) > 50:
if not os.path.exists(pd_file):
f_read_cli(pd_cmd, pd_file)
if (float(time.time()) - float(stat_ld.st_ctime)) > 50:
else:
stat_pd = os.stat(pd_file)
if (float(time.time()) - float(stat_pd.st_ctime)) > 50:
f_read_cli(pd_cmd, pd_file)
if not os.path.exists(ld_file):
f_read_cli(ld_cmd, ld_file)
else:
stat_ld = os.stat(ld_file)
if (float(time.time()) - float(stat_ld.st_ctime)) > 50:
f_read_cli(ld_cmd, ld_file)
if len(sys.argv) == 2:
if sys.argv[1] == "ld":


Loading…
Cancel
Save

Powered by TurnKey Linux.