Python Forum
Problems parsing /proc folder
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Problems parsing /proc folder
#3
deadeye@nexus ~ $ for path in pathlib.Path('/proc/').glob('*/fd/*'): 
.................     if not path.name.isdigit(): 
.................         continue 
.................     abs_path = path.resolve() 
.................     if abs_path.name.startswith('socket'): 
.................         print(path, '->', abs_path.name) 
.................            
Output:
/proc/10824/fd/3 -> socket:[19977] /proc/10824/fd/4 -> socket:[19971] /proc/10824/fd/5 -> socket:[19982] /proc/10824/fd/6 -> socket:[19988] /proc/32720/fd/1 -> socket:[110706] /proc/32720/fd/2 -> socket:[110706] /proc/32720/fd/5 -> socket:[108729] /proc/32720/fd/7 -> socket:[108730] /proc/32720/fd/8 -> socket:[110709]
Almost dead, but too lazy to die: https://sourceserver.info
All humans together. We don't need politicians!
Reply


Messages In This Thread
RE: Problems parsing /proc folder - by Larz60+ - Mar-06-2019, 08:08 PM
RE: Problems parsing /proc folder - by DeaD_EyE - Mar-06-2019, 09:16 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Compare folder A and subfolder B and display files that are in folder A but not in su Melcu54 3 567 Jan-05-2024, 05:16 PM
Last Post: Pedroski55
  Generate lists of devices and partitions from /proc/partitions? DachshundDigital 1 782 Feb-28-2023, 10:55 PM
Last Post: deanhystad
  Compare filename with folder name and copy matching files into a particular folder shantanu97 2 4,510 Dec-18-2021, 09:32 PM
Last Post: Larz60+
  Move file from one folder to another folder with timestamp added end of file shantanu97 0 2,486 Mar-22-2021, 10:59 AM
Last Post: shantanu97
  Python Cut/Copy paste file from folder to another folder rdDrp 4 5,082 Aug-19-2020, 12:40 PM
Last Post: rdDrp
  Encoding problems on multiple files in one folder NikolajKorsgaard 5 4,016 Jun-11-2019, 03:39 AM
Last Post: micseydel
  Visiting invisible folders in /proc anddontyoucomebacknomore 0 1,582 Mar-18-2019, 02:05 AM
Last Post: anddontyoucomebacknomore
  Delete directories in folder is not working after folder is updated asheru93 2 2,670 Feb-13-2019, 12:37 PM
Last Post: asheru93
  copy content of folder to existing folder shlomi27 0 2,646 Aug-11-2018, 01:44 PM
Last Post: shlomi27
  execute a SQL stored proc within PYTHON PYTHONDUDE 3 9,515 Mar-21-2018, 04:15 PM
Last Post: nilamo

Forum Jump:

User Panel Messages

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