devxlogo

Find if directory exists

Question:
We would like to find out if a directory that was typed exists. Furthermore, we prefer not to use a list box control or getFileOpenName.

Answer:
To do this you will need to declare the following API call as a local external function:

Function ulong GetFileAttributesA (ref string filename) library "KERNEL32.DLL"

Then write some script as follows:

ULong	lul_RClul_RC = GetFileAttributesA(as_DirectoryName)// Check if 5th bit is set, if so this is a directoryIf Mod(Integer(lul_RC / 16), 2) > 0 Then 	Return TrueElse	Return FalseEnd If

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  Seven Service Boundary Mistakes That Create Technical Debt

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.