Lua's way of determining whether a directory or file exists

Source: Internet
Author: User
Tags lua

This article mainly introduces LUA to determine the existence of a directory or file, Lua can use Io.open to determine whether a file or directory exists, this article summarizes the method of judgment, and gives a custom function, the need for friends can refer to the

First, the use of Io.open

Open a bit and it's OK.

The code is as follows:

File,err=io.open ("XXXX")

Err is nil if the file is opened normally with file handle. Otherwise file is nil and err is the error message "Drr:no such file or directory."

You just need to open it. Then look at the return value.

The code is as follows:

Somefile= "Xxxj.pdf"

Local F,err=io.open (Somefile, "r+");

Print (ERR)

If the file does not exist, err will contain relevant information.

Two, Custom function

The code is as follows:

function file_exists (path)

Local file = Io.open (path, "RB")

If file then File:close () end

Return file ~= Nil

End

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.