Python Forum
FileNotFoundError: [Errno 2] No such file or directory although the file exists
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
FileNotFoundError: [Errno 2] No such file or directory although the file exists
#1
I am defining a logger and periodically exporting the content to a blob. I’ve been using this for some time with DBR 10.4/python 3.8 without any issue. However we’ve moved to DBR 15.2/python 3.11, and now the logger function is working as expected. But when I’m trying to read and export it it’s throwing the following error:

Quote:FileNotFoundError: [Errno 2] No such file or directory

I additionally tried to specify a log folder and use the logpath + filename to create the log and read it. Although the logs are created but iIt’s still throwing the same error. After getting the error if I run
Quote:os.listdir(logpath)
I don’t see the missing logfile in the list. But if I run
Quote:%sh ls -als logpath
I can see the ‘missing’ log file listed. If I run
Quote:os.listdir(logpath)
again, the missing logfiles appear in the list.

I’ve also tried the following in both environment:
(print(os.popen("id").read()))
(print(os.popen(r"/Workspace/Users/[email protected]/log").read()))

For both env, I’m getting
Quote:uid=0(root) gid=0(root) groups=0(root)
for the first command. But for the second command I’m getting blank in 3.8 env &
Quote:/bin/sh: 1: /logpath: Permission denied
in 3.11 respectively.

I haven’t posted any of the codes as I'm not sure which part would be relevant for this issue, but I can post the required part of the code as well in a follow up comment. A detailed post on the same topic with codes can be found here: https://stackoverflow.com/questions/7879...2_78793965

Any help will be welcome on this issue. Thanks in advance!
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  How to write variable in a python file then import it in another python file? tatahuft 4 850 Jan-01-2025, 12:18 AM
Last Post: Skaperen
  JSON File - extract only the data in a nested array for CSV file shwfgd 2 1,010 Aug-26-2024, 10:14 PM
Last Post: shwfgd
  "[Errno 2] No such file or directory" (.py file) IbrahimBennani 13 6,067 Jun-17-2024, 12:26 AM
Last Post: AdamHensley
  Error (Errno 2), File upload with the Flask framework and a public IP Username_Python1 0 1,220 Mar-28-2024, 01:46 PM
Last Post: Username_Python1
  file open "file not found error" shanoger 8 5,838 Dec-14-2023, 08:03 AM
Last Post: shanoger
  Need to replace a string with a file (HTML file) tester_V 1 1,856 Aug-30-2023, 03:42 AM
Last Post: Larz60+
  FileNotFoundError: [WinError 2] The system cannot find the file specified NewBiee 2 2,988 Jul-31-2023, 11:42 AM
Last Post: deanhystad
  How can I change the uuid name of a file to his original file? MaddoxMB 2 2,065 Jul-17-2023, 10:15 PM
Last Post: Pedroski55
  Using pyinstaller with .ui GUI files - No such file or directory error diver999 3 7,582 Jun-27-2023, 01:17 PM
Last Post: diver999
  Reading data from excel file –> process it >>then write to another excel output file Jennifer_Jone 0 2,067 Mar-14-2023, 07:59 PM
Last Post: Jennifer_Jone

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020