![]() |
|
|
|
#1
|
||||
|
||||
|
After dowloading the .DS_Store file from this url:
Code:
http://out5.hex-rays.com/.DS_Store Code:
'''SCT'''
import ds_store
def extract_paths(ds_store_path):
paths = []
with ds_store.DSStore.open(ds_store_path, 'r') as ds:
for record in ds:
paths.append(record.filename)
return paths
# Usage
ds_store_path = './Untitled.DS_Store'
extracted_paths = extract_paths(ds_store_path)
for path in extracted_paths:
print(path)
Code:
mac-alias ds-store Last edited by blue_devil; 08-12-2024 at 18:57. Reason: typo |
| The Following 3 Users Say Thank You to blue_devil For This Useful Post: | ||
![]() |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Installation of DriverStudio 3.2 causes System Crash | rcer | General Discussion | 7 | 09-20-2009 09:25 |
| Visual Studio .Net installation help | Nilrem | General Discussion | 15 | 03-11-2004 06:55 |