Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
chkFile with absolute paths
#8
Most functions just assume that particular type will be sent in (it's always a list-like object or it's always a string).

You can ask the object if it's an instance of a string and otherwise assume you could iterate through it.

def show_strings(obj):
    if isinstance(obj, str):
        print(f"got the single string {obj}")
    else:
        for s in obj:
            print(f"One string in the collection is {s}")


show_strings("onestring")
print()
show_strings(("string1", "string2", "string3"))
Output:
got the single string onestring One string in the collection is string1 One string in the collection is string2 One string in the collection is string3
I don't see any reason that it should work on local files and fail on files in /sys. Does it work for something like "/etc/passwd"? I don't have the file that you're concerned about on my system, so I don't know if it's special in some way.
Reply


Messages In This Thread
chkFile with absolute paths - by JarredAwesome - Sep-20-2020, 01:18 AM
RE: chkFile with absolute paths - by bowlofred - Sep-20-2020, 01:31 AM
RE: chkFile with absolute paths - by JarredAwesome - Sep-20-2020, 02:24 AM
RE: chkFile with absolute paths - by bowlofred - Sep-20-2020, 02:52 AM
RE: chkFile with absolute paths - by JarredAwesome - Sep-20-2020, 12:55 PM
RE: chkFile with absolute paths - by bowlofred - Sep-20-2020, 04:33 PM
RE: chkFile with absolute paths - by JarredAwesome - Sep-21-2020, 02:22 AM
RE: chkFile with absolute paths - by bowlofred - Sep-21-2020, 03:51 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Absolute paths in subprocess - file not found kittyticker 4 481 Jan-28-2024, 10:37 PM
Last Post: kittyticker
  pdf2image, poppler and paths jehoshua 18 14,551 Jun-14-2022, 06:38 AM
Last Post: jehoshua
  Windows paths issue otalado 3 1,457 May-29-2022, 09:11 AM
Last Post: snippsat
  automatically get absolute paths oclmedyb 1 2,112 Mar-11-2021, 04:31 PM
Last Post: deanhystad
  Absolute beginner am I missing something? kamren 7 3,157 Sep-25-2020, 05:32 AM
Last Post: buran
  absolute imports between folders mikisDW 0 1,532 Aug-05-2020, 12:26 PM
Last Post: mikisDW
  Paths millpond 12 5,186 Jul-30-2020, 01:16 PM
Last Post: snippsat
  Problems with windows paths delphinis 6 5,158 Jul-21-2020, 06:11 PM
Last Post: Gribouillis
  I am an absolute newbie.Help me! feynarun 4 2,480 Apr-11-2020, 09:25 PM
Last Post: feynarun
  Shortest paths to win snake and ladder sandaab 5 4,218 Jun-30-2019, 03:20 PM
Last Post: sandaab

Forum Jump:

User Panel Messages

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