Long File Names Can Be Confusing

Long File Names Can Be Confusing

If you want to open Paint with a file from your application, it’s better to convert the path of the file you want to open from long to short names. Doing so is wise because in some situations-if your path contains spaces, for example-Paint may refuse to work properly. Before passing a file name to Paint, convert it to short names with this routine, which takes advantage of the Win32 API:

 Declare Function GetShortPathName Lib "kernel32" Alias _	"GetShortPathNameA" (ByVal lpszLongPath As String, _	ByVal lpszShortPath As String, _	ByVal cchBuffer As Long) As LongFunction ShortName(LongPath As String) As String	Dim ShortPath As String	Const MAX_PATH = 260	Dim ret&	ShortPath = Space$(MAX_PATH)	ret& = GetShortPathName(LongPath, ShortPath, MAX_PATH)	If ret& Then		ShortName = Left$(ShortPath, ret&)	End IfEnd Function

This trick may prove useful with any application you pass file names to. It would be smart to try passing “strange” file names/paths to make sure.

Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several