Python Forum
check if a file exist on the internet and get the size
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
check if a file exist on the internet and get the size
#1
hi, sorry for my bad english,
i currently create this code:
#image_name = 'https://www.google.co.id/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png'
image_name = 'C:\DumpStack.log'
from os.path import exists
if exists(image_name):
    import os
    statinfo = os.stat(image_name)
    print(image_name + " exist, with size : " + str(statinfo.st_size))
else:
    print(image_name + " do not exist")
but somehow does not work at a file on the internet,
can someone convert this code or give me the clue on the google keyword?
thank you, have a nice day
Reply


Messages In This Thread
check if a file exist on the internet and get the size - by kucingkembar - Apr-16-2022, 12:36 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  No Internet connection when running a Python script basil_555 8 663 Mar-11-2024, 11:02 AM
Last Post: snippsat
  UndefinedEnvironmentName: 'extra' does not exist in evaluation environment EarthAndMoon 3 1,704 Oct-09-2023, 05:38 PM
Last Post: snippsat
  Converted EXE file size is too large Rajasekaran 0 1,528 Mar-30-2023, 11:50 AM
Last Post: Rajasekaran
  please check this i wanna use a csv file as a graph xCj11 5 1,507 Aug-25-2022, 08:19 PM
Last Post: deanhystad
  Code to check folder and sub folders for new file and alert fioranosnake 2 1,953 Jan-06-2022, 05:03 PM
Last Post: deanhystad
  SQLALCHEMY - Column doesn't exist jamesaarr 9 7,594 Nov-04-2021, 09:20 AM
Last Post: ndc85430
  Check last time file was accessed Pavel_47 4 2,844 Jun-01-2021, 05:47 PM
Last Post: Yoriz
  How to check if a file has finished being written leocsmith 2 7,868 Apr-14-2021, 04:21 PM
Last Post: perfringo
  pathlib destpath.exists() true even file does not exist NaN 9 4,706 Dec-01-2020, 12:43 PM
Last Post: NaN
  Check internet speed ebolisa 1 1,781 Oct-29-2020, 08:09 PM
Last Post: Larz60+

Forum Jump:

User Panel Messages

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