Skip to content

cristianbuse/VBA-FileTools

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

93 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

VBA-FileTools

FileTools is a small VBA library that is useful for interacting with the file system.

Supports OneDrive/SharePoint/UNC path conversion to local drive path (GetLocalPath) and viceversa (GetRemotePath) written in collaboration with Guido (@guwidoe / GWD). See relevant SO Answer written by Guido. Many thanks to him!

Installation

Just import the following code module in your VBA Project:

Usage

A couple of demoes saved in the Demo module.

Public/Exposed methods:

  • BrowseForFiles (Windows only)
  • BrowseForFolder (Windows only)
  • BuildPath
  • ConvertText
  • CopyFile
  • CopyFolder
  • CreateFolder
  • DeleteFile
  • DeleteFolder
  • FixFileName
  • FixPathSeparators
  • GetFileOwner (Windows only)
  • GetFiles
  • GetFolders
  • GetKnownFolderCLSID (Windows only)
  • GetKnownFolderPath (Windows only)
  • GetLocalPath (covers UNC/OneDrive/SharePoint paths)
  • GetRelativePath
  • GetRemotePath (covers UNC/OneDrive/SharePoint paths)
  • GetSpecialFolderConstant (Mac only)
  • GetSpecialFolderDomain (Mac only)
  • GetSpecialFolderPath (Mac only)
  • IsFile
  • IsFolder
  • IsFolderEditable
  • MoveFile
  • MoveFolder
  • ParentFolder
  • ReadBytes

Notes

  • No extra library references are needed (e.g. Microsoft Scripting Runtime)
  • Works in any host Application (Excel, Word, AutoCAD etc.)
  • Works on both Windows and Mac. On Mac, 3 of the methods are not available
  • Works in both x32 and x64 application environments

License

MIT License

Copyright (c) 2012 Ion Cristian Buse

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Useful methods for interacting with the file system

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

 

Packages

No packages published

Languages