File Exists

[Solved] File Exists | Php - Code Explorer | yomemimo.com
Question : c# file exist

Answered by : binary-killer

if (File.Exists("file.exe"))
{	//file exist
} else { //does not exist
}

Source : | Last Update : Mon, 09 Mar 20

Question : check if a file exists

Answered by : dead-deer-2osfixfyazpe

>>> import os
>>> os.path.isfile("d:\\Package1\\package1\\fibo.py")
True
>>> os.path.isfile("d:/Package1/package1/fibo.py")
True
>>> os.path.isfile("d:\\nonexisting.txt")

Source : https://www.tutorialspoint.com/How-do-I-check-whether-a-file-exists-using-Python | Last Update : Tue, 01 Sep 20

Question : Check File Exists

Answered by : redouan-rida

[ -f /etc/resolv.conf ] && { echo "$FILE exist."; cp "$FILE" /tmp/; }

Source : https://linuxize.com/post/bash-check-if-file-exists/ | Last Update : Wed, 09 Mar 22

Question : File exists

Answered by : beautiful-bird-8ql2rfxhpnt3

from pathlib import Path
if Path('filename.txt').is_file(): print ("File exist")
else: print ("File not exist")

Source : https://linuxize.com/post/python-check-if-file-exists/ | Last Update : Tue, 14 Jun 22

Question : # check if file exists

Answered by : impossible-impala-2kf2sz6ngusb

# check if file exists
from os.path import exists
file_exists = exists("/content/sample_data/california_housing_test.csv")
print(file_exists)
#True
from pathlib import Path
path = Path("/content/sample_data/california_housing_test.csv")
path.is_file()
#False

Source : | Last Update : Sat, 02 Apr 22

Question : file exist

Answered by : ashwin-rajendran

#define BOOST_FILESYSTEM_VERSION 3
#define BOOST_FILESYSTEM_NO_DEPRECATED
#include <boost/filesystem.hpp>
namespace fs = boost::filesystem;
/** * \brief Return the filenames of all files that have the specified extension * in the specified directory and all subdirectories. */
std::vector<fs::path> get_all(fs::path const & root, std::string const & ext)
{ std::vector<fs::path> paths; if (fs::exists(root) && fs::is_directory(root)) { for (auto const & entry : fs::recursive_directory_iterator(root)) { if (fs::is_regular_file(entry) && entry.path().extension() == ext) paths.emplace_back(entry.path().filename()); } } return paths;
}

Source : https://stackoverflow.com/questions/11140483/how-to-get-list-of-files-with-a-specific-extension-in-a-given-folder | Last Update : Fri, 17 Jun 22

Answers related to file exists

Code Explorer Popular Question For Php