Python Forum
find file not knowing the extension
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
find file not knowing the extension
#3
(Jul-07-2020, 12:47 PM)DeaD_EyE Wrote: You could use this module form the standard lib: https://docs.python.org/2/library/imghdr.html

Thank you but it looks that I already need to know the extension in this way, I know the file name but not the extension, then I cannot use it.

I'm also trying to create if, in this way:

                    {% set path = '/static/images/images/' + recipe._id|string + '.png' %}
                    {% if (os.path.isfile(path)) %}
                            <p>File EXISTS</p>
                    {% else %}
                            <p>File DO NOT EXISTS</p>
                    {% endif %}
But I keep receiving the following error:

jinja2.exceptions.UndefinedError
jinja2.exceptions.UndefinedError: 'os' is undefined

os is defined in the main.py file, maybe I must use a different syntax, but I'm a beginner, I have no idea how it needs to be done.
Reply


Messages In This Thread
find file not knowing the extension - by Leon79 - Jul-07-2020, 12:06 PM
RE: find file not knowing the extension - by Leon79 - Jul-07-2020, 12:56 PM
RE: find file not knowing the extension - by rexrf - Jul-07-2020, 01:44 PM
RE: find file not knowing the extension - by Leon79 - Jul-07-2020, 04:44 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  partial functions before knowing the values mikisDeWitte 4 681 Dec-24-2023, 10:00 AM
Last Post: perfringo
  FileNotFoundError: [WinError 2] The system cannot find the file specified NewBiee 2 1,657 Jul-31-2023, 11:42 AM
Last Post: deanhystad
  Cannot find py credentials file standenman 5 1,725 Feb-25-2023, 08:30 PM
Last Post: Jeff900
  selenium can't find a file in my desk ? SouAmego22 0 775 Feb-14-2023, 03:21 PM
Last Post: SouAmego22
  Find (each) element from a list in a file tester_V 3 1,284 Nov-15-2022, 08:40 PM
Last Post: tester_V
  what will be the best way to find data in txt file? korenron 2 1,209 Jul-25-2022, 10:03 AM
Last Post: korenron
  find some word in text list file and a bit change to them RolanRoll 3 1,587 Jun-27-2022, 01:36 AM
Last Post: RolanRoll
  Find and delete above a certain line in text file cubangt 12 3,642 Mar-18-2022, 07:49 PM
Last Post: snippsat
Question Help to find the largest int number in a file directory SalzmannNicholas 1 1,683 Jan-13-2022, 05:22 PM
Last Post: ndc85430
Thumbs Up [SOLVED] Find last occurence of pattern in text file? Winfried 4 4,530 Aug-13-2021, 08:21 PM
Last Post: Winfried

Forum Jump:

User Panel Messages

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