0% found this document useful (0 votes)
83 views

Excel VBA File Management Using The FileSytemObject

Uploaded by

Yamini Shinde
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
83 views

Excel VBA File Management Using The FileSytemObject

Uploaded by

Yamini Shinde
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 21

8/14/2018 Excel VBA File Management Using The FileSytemObject –

Menu Explore

Excel Tutorial Excel VBA Tutorial Tutorial

Excel VBA File Management Using The


FileSytemObject
Chester Tugwell on May 8, 2017

Using the FileSytemObject


The FileSystemObject (FSO) provides a useful way to access the filing system on your computer and
network drives. To use the FSO you first need to create a reference to the Microsoft Scripting
Runtime Library.

Learn Programming on CodeGy


Fun and interesting way to learn
Ad
Programming. Try it now!

codegym.cc

OPEN

This website uses cookies to improve your experience. Click on Accept to continue. Click Reject to exit this site. To manage
your cookie settings, please click Read More. Accept Reject Read More
70+ MUST KNOW EXCEL SHORTCUT KEYS: Download the pdf from our Excel training page
UNDERSTAND & FIX EXCEL ERRORS D l d th df f
https://www.bluepecantraining.com/excel-vba-file-management-using-filesytemobject/
E lt i i 1/21
8/14/2018 Excel VBA File Management Using The FileSytemObject –
UNDERSTAND & FIX EXCEL ERRORS: Download the pdf from our Excel training page
Learn how to fix these errors: #DIV/0!, #N/A!, #NAME?, #NULL!, #NUM!, #REF! & #VALUE!

In the VBE click Tools | References.

Check the option Microsoft Scripting Runtime and click OK.

You can browse the scripting objects, methods and properties using the Object Browser. Select
Scripting from the All Libraries drop down.

The FileSystemObject contains lots of useful methods that you can use for drives, folders and files.

This website uses cookies to improve your experience. Click on Accept to continue. Click Reject to exit this site. To manage
your cookie settings, please click Read More. Accept Reject Read More

https://www.bluepecantraining.com/excel-vba-file-management-using-filesytemobject/ 2/21
8/14/2018 Excel VBA File Management Using The FileSytemObject –

To use the File System Object you need to create a new instance of it as shown in the code below.

'Create a new instance of the File System Object


Dim fso As Scripting.FileSystemObject
Set fso = New Scripting.FileSystemObject

Get Methods
Get methods allow you to retrieve information about a drive, folder or file.

This website uses cookies to improve your experience. Click on Accept to continue. Click Reject to exit this site. To manage
your cookie settings, please click Read More. Accept Reject Read More

https://www.bluepecantraining.com/excel-vba-file-management-using-filesytemobject/ 3/21
8/14/2018 Excel VBA File Management Using The FileSytemObject –

70+ MUST KNOW EXCEL SHORTCUT KEYS: Download the pdf from our Excel training page
UNDERSTAND & FIX EXCEL ERRORS: Download the pdf from our Excel training page
Learn how to fix these errors: #DIV/0!, #N/A!, #NAME?, #NULL!, #NUM!, #REF! & #VALUE!

Get Drive
Use GetDrive to specify which drive you want to examine. With the drive specified you can retrieve
information about it using the properties shown in the Object Browser below.

In this example we use the FreeSpace property of the Drive object to calculate the available space on
a drive.

Sub UsingGetDrive()
Const BytesToTB As Double = 1099511627776#
Dim fso As Scripting.FileSystemObject
Set fso = New Scripting.FileSystemObject
Dim drv As Scripting.Drive
Set drv = fso.GetDrive("D:")
Dim AvlbSpace As Double
AvlbSpace = Round(drv.FreeSpace / BytesToTB, 2)
MsgBox "Drive " & drv.DriveLetter & " has " & AvlbSpace & "TBs of free
End Sub

Thewebsite
This code above creates
uses cookies the message
to improve box shown
your experience. below.
Click on Accept to continue. Click Reject to exit this site. To manage
your cookie settings, please click Read More. Accept Reject Read More

https://www.bluepecantraining.com/excel-vba-file-management-using-filesytemobject/ 4/21
8/14/2018 Excel VBA File Management Using The FileSytemObject –

GetFolder
Use GetFolder to specify which folder you want to examine. With the folder specified you can retrieve
information about it using the properties shown in the Object Browser below.

In this example we use the Files property to allow us to count the number of files present in a folder.

Sub UsingGetFolder()
Dim fso As Scripting.FileSystemObject
Set fso = New Scripting.FileSystemObject
Dim fld As Scripting.Folder
Set fld = fso.GetFolder("C:\Users\xxxx\Desktop\MyFolder")
Dim CountFiles As Byte
CountFiles = fld.Files.Count
MsgBox "There are " & CountFiles & " files in folder: " & fld.Name
End Sub

The code above creates the message box shown below.


This website uses cookies to improve your experience. Click on Accept to continue. Click Reject to exit this site. To manage
your cookie settings, please click Read More. Accept Reject Read More

https://www.bluepecantraining.com/excel-vba-file-management-using-filesytemobject/ 5/21
8/14/2018 Excel VBA File Management Using The FileSytemObject –

GetFile
Use GetFile to specify which file you want to examine. With the file specified you can retrieve
information about it using the properties shown in the Object Browser below.

In this example we use the DateLastModified property of the file object.

70+ MUST KNOW EXCEL SHORTCUT KEYS: Download the pdf from our Excel training page
This website uses cookies to improve your experience. Click on Accept to continue. Click Reject to exit this site. To manage
UNDERSTAND & FIX EXCEL ERRORS: Download the pdf from our Excel training page
your cookie settings, please click Read More. Accept Reject Read More
Learn how to fix these errors: #DIV/0!, #N/A!, #NAME?, #NULL!, #NUM!, #REF! & #VALUE!
https://www.bluepecantraining.com/excel-vba-file-management-using-filesytemobject/ 6/21
8/14/2018 Excel VBA File Management Using The FileSytemObject –

Sub UsingGetFile()
Dim fso As Scripting.FileSystemObject
Set fso = New Scripting.FileSystemObject
Dim fle As Scripting.File
Set fle = fso.GetFile("C:\Users\xxxx\Desktop\MyFolder\Budget.xlsx")
Dim LstMod As Date
LstMod = fle.DateLastModified
MsgBox fle.Name & " was last modified on " & LstMod
End Sub

The code above creates the message box shown below.

Other Useful Methods


CreateFolder Method
The CreateFolder method has a single parameter: Path

Sub CreateAFolder()
Dim fso As Scripting.FileSystemObject
Set fso = New Scripting.FileSystemObject
Dim MyPath As String
MyPath = "C:\Users\xxxx\Desktop\"
fso.CreateFolder MyPath & "FolderXYZ"
End Sub

CopyFile Method
The CopyFile method has three parameters: Source, Designation and OverWriteFiles (defaults to
TRUE)

Sub CopyAFile()
Dim fso As Scripting.FileSystemObject
Set
This fsouses
website = New Scripting.FileSystemObject
cookies to improve your experience. Click on Accept to continue. Click Reject to exit this site. To manage
Dim MyPath As String
your cookie settings, please click Read More. Accept Reject Read More
MyPath = "C:\Users\xxxx\Desktop\"
fso CopyFile Source:=MyPath & "MyFolder\Budget xlsx", Destination:=MyPa
https://www.bluepecantraining.com/excel-vba-file-management-using-filesytemobject/ 7/21
8/14/2018 Excel VBA File Management Using The FileSytemObject –
fso.CopyFile Source: MyPath & MyFolder\Budget.xlsx , Destination: MyPa
End Sub

Note that you have to state the file name in the Destination parameter.

DeleteFile Method
The DeleteFile method has two parameters FileSpec and Force (delete if Read-only defaults to
FALSE)

Sub DeleteFile()
Dim fso As Scripting.FileSystemObject
Set fso = New Scripting.FileSystemObject
Dim MyPath As String
MyPath = "C:\Users\xxxx\Desktop\"
fso.DeleteFile MyPath & "MyFolder\Junk.xlsx"
End Sub

MoveFile Method
The MoveFile method has two parameters: Source and Destination.

Effective Communicators Make


Effective Teams. Learn More.
Ad Set Your Team Up For Successful
Communication. Get Grammarly Busin
Grammarly Business

Learn More

70+ MUST KNOW EXCEL SHORTCUT KEYS: Download the pdf from our Excel training page
UNDERSTAND & FIX EXCEL ERRORS: Download the pdf from our Excel training page
Learn how to fix these errors: #DIV/0!, #N/A!, #NAME?, #NULL!, #NUM!, #REF! & #VALUE!

Sub MoveFile()
Dim fso As Scripting.FileSystemObject
Set fso = New Scripting.FileSystemObject
Dim MyPath As String
MyPath = "C:\Users\xxxx\Desktop\"
This website uses cookies to improve your experience. Click on Accept to continue. Click Reject to exit this site. To manage
fso.MoveFile _
your cookie settings,
Source:=MyPath please click Read More.Me.xlsx",
& "MyFolder\Move Accept Reject Read More
Destination:=MyPath & "Fo
End Sub
https://www.bluepecantraining.com/excel-vba-file-management-using-filesytemobject/ 8/21
8/14/2018 Excel VBA File Management Using The FileSytemObject –

FolderExists Method
The FolderExists method has a single parameter: FolderSpec

Sub CheckIfFolderExists()
Dim fso As Scripting.FileSystemObject
Set fso = New Scripting.FileSystemObject
Dim MyPath As String
MyPath = "C:\Users\xxxx\Desktop\"
'Check to see if folder already exists
If fso.FolderExists(MyPath & "\MyFolder") Then
MsgBox "Folder Already Exists"
Else
'Create a folder
fso.CreateFolder MyPath & "New Folder"
End If
End Sub

FileExists Method
The FileExists method has a single parameter: FileSpec

Sub CheckIfFileExists()
Set fso = New Scripting.FileSystemObject
Dim MyPath As String
MyPath = "C:\Users\chest\Desktop\"
'Check to see if file exists
If fso.FileExists(MyPath & "MyFolder\Move Me.xlsx") Then
'Move a file
fso.MoveFile _
Source:=MyPath & "MyFolder\Move Me.xlsx", _
Destination:=MyPath & "FolderXYZ\Move Me.xlsx"
Else
MsgBox "File Does Not Exist"
End If
End Sub

Practical Examples
Copy Files With a Speci c File Type
This website
In this uses cookies
example to improve
the Type propertyyour experience.
of the Clickison
File object Accept
used to continue.whether
to determine Click Reject to gets
a file exit this site. To
copied. Wemanage

only want to your


copycookie
.xlsx settings, please click
files. Contents Read More.shown
of MyFolder Accept
below. Reject Read More

https://www.bluepecantraining.com/excel-vba-file-management-using-filesytemobject/ 9/21
8/14/2018 Excel VBA File Management Using The FileSytemObject –

Sub CopyFilesWithASpecificFileType()

Dim fso As Scripting.FileSystemObject


Set fso = New Scripting.FileSystemObject

Dim fle As Scripting.File

Dim MyFolderPath As String


MyFolderPath = "C:\Users\chest\Desktop\MyFolder"

Dim ExcelFolderPath As String


ExcelFolderPath = "C:\Users\chest\Desktop\ExcelFolder"

Dim MyFolder As Scripting.Folder


Set MyFolder = fso.GetFolder(MyFolderPath)

For Each fle In MyFolder.Files


If fle.Type = "Microsoft Excel Worksheet" Then fle.Copy ExcelFolder
Next fle
End Sub

Contents of ExcelFolder (once code executed) shown below.

Copy All Excel File Types


The previous example would only have copied .xlsx files. What if we want to copy all Excel file types:
xlsx, xls, and xlsm. Contents of MyFolder shown below.

This website uses cookies to improve your experience. Click on Accept to continue. Click Reject to exit this site. To manage
your cookie settings, please click Read More. Accept Reject Read More

https://www.bluepecantraining.com/excel-vba-file-management-using-filesytemobject/ 10/21
8/14/2018 Excel VBA File Management Using The FileSytemObject –

We can return the file type using the Scripting FileSystemObject method GetExtensionName

The first two characters of an Excel file extension are xl. Using the Left function we can determine if
this is the case.

If Left(fso.GetExtensionName(fle.Path), 2) = "xl" Then


fle.Copy ExcelFolderPath & "\" & fle.Name
End If

We can then loop this code for each file in our folder.

Effective Communicators Make


Effective Teams. Learn More.
Ad Set Your Team Up For Successful
Communication. Get Grammarly Busin
Grammarly Business

Learn More

70+ MUST KNOW EXCEL SHORTCUT KEYS: Download the pdf from our Excel training page
UNDERSTAND & FIX EXCEL ERRORS: Download the pdf from our Excel training page
Learn how to fix these errors: #DIV/0!, #N/A!, #NAME?, #NULL!, #NUM!, #REF! & #VALUE!

Sub CopyAllExcelFilesIntoFolder()
Dim fso As Scripting.FileSystemObject
Set fso = New Scripting.FileSystemObject

Dim fle As Scripting.File

Dim MyFolderPath As String


MyFolderPath = "C:\Users\chest\Desktop\MyFolder"

Dim ParentPath As String


This website uses cookies to improve your experience. Click on Accept to continue. Click Reject to exit this site. To manage
ParentPath = "C:\Users\chest\Desktop\"
your cookie settings, please click Read More. Accept Reject Read More
Dim MyFolder As Scripting.Folder
https://www.bluepecantraining.com/excel-vba-file-management-using-filesytemobject/ 11/21
8/14/2018 Excel VBA File Management Using The FileSytemObject –
Set MyFolder = fso.GetFolder(MyFolderPath)

Dim ExcelFolderPath As String


ExcelFolderPath = fso.CreateFolder(ParentPath & "All Excel Files").Path

For Each fle In MyFolder.Files


If Left(fso.GetExtensionName(fle.Path), 2) = "xl" Then
fle.Copy ExcelFolderPath & "\" & fle.Name
End If
Next fle
End Sub

Contents of All Excel Files folder (once code executed) shown below.

Organise Files Based on File Type


In this example we create a folder for each file type of files found in MyFolder and then copy the files
to the appropriate folder.

Contents of MyFolder shown below.

Sub OrganiseIntoFoldersBasedOnFileType()
Dim fso As Scripting.FileSystemObject
Set fso = New Scripting.FileSystemObject
This
Dimwebsite
fleuses
Ascookies to improve your experience. Click on Accept to continue. Click Reject to exit this site. To manage
Scripting.File
your cookie settings, please click Read More. Accept Reject Read More
'Store the old folder's path in a variable
Di M F ld P th A St i
https://www.bluepecantraining.com/excel-vba-file-management-using-filesytemobject/ 12/21
8/14/2018 Excel VBA File Management Using The FileSytemObject –
Dim MyFolderPath As String
MyFolderPath = "C:\Users\chest\Desktop\MyFolder"

'Store the path for the new folders in a variable


Dim ParentPath As String
ParentPath = "C:\Users\chest\Desktop\"

'Create a scripting folder object


Dim MyFolder As Scripting.Folder
Set MyFolder = fso.GetFolder(MyFolderPath)

'Loop through the collection of files in the old folder


For Each fle In MyFolder.Files
'If a folder for the file type does not exist...
If Not fso.FolderExists(ParentPath & fle.Type) Then
'...then create a folder
fso.CreateFolder ParentPath & fle.Type
End If
'Copy the file to the correct folder
fle.Copy ParentPath & fle.Type & "\" & fle.Name
Next fle

End Sub

Resulting folders shown below.

Organise Files Based on File Name


In this example we want to organise files based on file name. We want a folder for each customer:
HYT and XYZ and within the customer folder we want a subfolder for the month that each file relates
to.

Shinjuku Station 3minutes.The


performance of shock appeare
Ad Shinjuku Station 3minutes. The co
performance of shock appeared. Feat
Jonetsu
This website uses cookies to improve your experience. Click on Accept Horumon
to continue. Click Reject to exit this site. To manage
your cookie settings, please click Read More. Accept Reject Read More
OPEN
https://www.bluepecantraining.com/excel-vba-file-management-using-filesytemobject/ 13/21
8/14/2018 Excel VBA File Management Using The FileSytemObject –

70+ MUST KNOW EXCEL SHORTCUT KEYS: Download the pdf from our Excel training page
UNDERSTAND & FIX EXCEL ERRORS: Download the pdf from our Excel training page
Learn how to fix these errors: #DIV/0!, #N/A!, #NAME?, #NULL!, #NUM!, #REF! & #VALUE!

Sub OrganiseFilesBasedOnFileName()
Dim fso As Scripting.FileSystemObject
Set fso = New Scripting.FileSystemObject

Dim fle As Scripting.File

'Store the all files folder's path in a variable


Dim AllFilesFolderPath As String
AllFilesFolderPath = "C:\Users\chest\Desktop\All Files"

'Store the path for the new folders in a variable


Dim ParentPath As String
ParentPath = "C:\Users\chest\Desktop\"

'Create a scripting folder object


Dim AllFilesFolder As Scripting.Folder
Set AllFilesFolder = fso.GetFolder(AllFilesFolderPath)

'Loop through the collection of files in the old folder

For Each fle In AllFilesFolder.Files


'Check to see if a folder exists
'for the customer that the file relates to
If Not fso.FolderExists(ParentPath & Left(fle.Name, 3)) Then
'If it doesn't create a folder
'based on the initials of the customer name
fso.CreateFolder ParentPath & Left(fle.Name, 3)
End If
'Check to see if there is subfolder within the company
'folder for the month that the file relates to
If uses
This website Notcookies
fso.FolderExists(ParentPath & Left(fle.Name,
to improve your experience. Click on Accept 3)to&exit"\"
to continue. Click Reject & _To manage
this site.
MonthName(Mid(fle.Name, _
your cookie settings, please click Read More. Accept Reject Read More
WorksheetFunction.Find(" ", fle.Name, _
WorksheetFunction Find(" " fle Name) + 1) + 4 2))) Then
https://www.bluepecantraining.com/excel-vba-file-management-using-filesytemobject/ 14/21
8/14/2018 Excel VBA File Management Using The FileSytemObject –
WorksheetFunction.Find( , fle.Name) + 1) + 4, 2))) Then
'If there isn't create the subfolder
fso.CreateFolder ParentPath & Left(fle.Name, 3) & "\" & _
MonthName(Mid(fle.Name, _
WorksheetFunction.Find(" ", fle.Name, _
WorksheetFunction.Find(" ", fle.Name) + 1) + 4, 2))
End If
'Copy the file to the relevant subfolder
fle.Copy ParentPath & Left(fle.Name, 3) & _
"\" & MonthName(Mid(fle.Name, _
WorksheetFunction.Find(" ", fle.Name, _
WorksheetFunction.Find(" ", fle.Name) + 1) + 4, 2)) & "\" & fle.Nam

Next fle

End Sub

Sub folders with the HYT customer folder.

Contents of the September sub folder.

Ads by Google

Excel VBA VBA Filesystemobject Methods

Microsoft Excel Excel Courses

This website uses cookies to improve your experience. Click on Accept to continue. Click Reject to exit this site. To manage
your cookie settings, please click Read More. Accept Reject Read More
Excel Training Courses - Excel VBA Macro to a Collapse and Expand Excel VBA Ma
Beginners' Intermediate Create Slicer for Heading in your Word Apply PivotTa
https://www.bluepecantraining.com/excel-vba-file-management-using-filesytemobject/ 15/21
8/14/2018 Excel VBA File Management Using The FileSytemObject –
Beginners , Intermediate, Create Slicer for Heading in your Word Apply PivotTa
Advanced & VBA... PivotTable 2013 Document – Blue...

Multiple Table of Excel VBA How to Filter – Page 2 of 6 – In House Excel 2016 Fo
Contents/ TOC for Each Data Using AutoFilter Excel Training & MS Sheet - New F
Section in Word Office Blog

Posted in: Excel Tutorial, Excel VBA Tutorial, Tutorial


Tagged in: Excel VBA, File Management, Microsoft Excel

Posted by Chester Tugwell


All Posts

This website uses cookies to improve your experience. Click on Accept to continue. Click Reject to exit this site. To manage
your cookie settings, please click Read More. Accept Reject Read More

https://www.bluepecantraining.com/excel-vba-file-management-using-filesytemobject/ 16/21
8/14/2018 Excel VBA File Management Using The FileSytemObject –

Related Tutorials

Excel Training
Courses -
Beginners',...

Excel VBA Macro


to a Create Slicer
for PivotTable

Collapse and
Expand Heading in
your Word 2013...

Excel VBA Macro


to Apply PivotTable
Style

Multiple Table of
Contents/ TOC for
Each Section in...

Excel VBA How to


Filter Data Using
AutoFilter

– Page 2 of 6 – In
House Excel
Training & MS...

Excel 2016
Forecast Sheet -
New Feature

Excel VBA - Text to


Columns with VBA
Macro

Excel VBA
Formatting Cells
and Values

Excel VBA - Apply


Conditional
Formatting Data...

Remove
This website uses cookies to improve the
your #N/A Click on Accept to continue. Click Reject to exit this site. To manage
experience.
Error in a
your cookie settings, please click Read More. Accept Reject Read More
VLOOKUP
https://www.bluepecantraining.com/excel-vba-file-management-using-filesytemobject/ 17/21
8/14/2018 Excel VBA File Management Using The FileSytemObject –

Excel 2013
Combining Multiple
Tables in a...

We Offer In House Excel Training in the Following Locations:

Excel Training Courses in East and West Sussex Delivered at Your Offices

Excel Training Courses in Burgess Hill, East Grinstead and Haywards Heath

Excel Training Courses in Eastbourne, Uckfield, Lewes, Hastings and Crowborough

Excel Training Courses in Hampshire Including Southampton Portsmouth &


Basingstoke

Excel Training Courses Farnborough, Andover, Winchester & Aldershot

Excel Training in Surrey Including Guildford, Woking, Godalming & Staines

Excel Training Courses in Farnham, Leatherhead, Camberley, Redhill & Reigate

Excel Training Courses in Croydon, Bromley, Orpington, Sutton & Coulsdon

Excel Training Courses in Kingston, Hounslow, Twickenham & Richmond

Excel Training Courses in Kent Including Dartford, Tunbridge Wells, Tonbridge &
Maidstone

Excel Training Courses in Canterbury, Gillingham, Sittingbourne & Ashford

Excel Training Courses in Essex

Excel Training Courses in Colchester, Harlow, Braintree, Loughton & Southend on


Sea
This website uses cookies to improve your experience. Click on Accept to continue. Click Reject to exit this site. To manage
your cookie settings, please click Read More. Accept Reject Read More
Excel Training Courses in Dorset Including Poole, Bournemouth, Dorchester &
https://www.bluepecantraining.com/excel-vba-file-management-using-filesytemobject/ 18/21
8/14/2018 Excel VBA File Management Using The FileSytemObject –

Weymouth

Excel Training Courses in Oxfordshire Including Oxford, Abingdon, Bicester & Banbury

Excel Training Courses In Hertfordshire Including Watford, Hemel Hempstead &


Stevenage

Excel Training Courses in St Albans, Welwyn Garden City, Hoddesdon, Hatfield &
Cheshunt

Excel Training Courses in Buckinghamshire Including Milton Keynes, Amersham,


Aylesbury, High Wycombe & Buckingham

Excel Training Courses in Beaconsfield, Chesham, Gerrards Cross & Marlow

Excel Training Courses In Berkshire Including Reading Slough Newbury & Bracknell

Excel Training Courses in Maidenhead, Wokingham, Windsor & Thatcham

Excel Training Courses in Wiltshire – Swindon, Salisbury, Devizes, Amesbury &


Marlborough

Excel Training Courses in Bristol, Bath, Gloucester, Cheltenham & Chippenham

Excel Courses Training in Luton at Your Business Premises

Excel Training Courses in Gloucestershire

Excel Training Courses in Worcestershire

Excel Training Courses in Warwickshire

Excel Training Courses in Herefordshire

Excel Training Courses in Cambridgeshire

This website uses cookies to improve your experience. Click on Accept to continue. Click Reject to exit this site. To manage
Excel Training Courses in Bedfordshire
your cookie settings, please click Read More. Accept Reject Read More

Excel Training Courses in Devon


https://www.bluepecantraining.com/excel-vba-file-management-using-filesytemobject/ 19/21
8/14/2018 Excel VBA File Management Using The FileSytemObject –
Excel Training Courses in Devon

Excel Training Courses in Suffolk

Excel Training Courses in Somerset

Excel Training Courses in London & Greater London

Next

Excel VBA – Storing Data in Arrays & Dynamic Arrays


May 5, 2017

Previous

Excel Training in Portsmouth


July 31, 2017

tel: 0800 612 4105


email: [email protected]

Blue Pecan Computer Training Limited


Registered Office: Piper House 4 Dukes Court, Bognor Rd, Chichester, West Sussex. PO19 8FX

Registered in England and Wales No. 8004610

Copyright 2018

This website uses cookies to improve your experience. Click on Accept to continue. Click Reject to exit this site. To manage
your cookie settings, please click Read More. Accept Reject Read More

https://www.bluepecantraining.com/excel-vba-file-management-using-filesytemobject/ 20/21
8/14/2018 Excel VBA File Management Using The FileSytemObject –

Excel Training

MS Project Training

Word Training

OneNote Training

PowerPoint Training

Publisher Training

Visio Training

Blue Pecan Computer Training Ltd

This website uses cookies to improve your experience. Click on Accept to continue. Click Reject to exit this site. To manage
your cookie settings, please click Read More. Accept Reject Read More

https://www.bluepecantraining.com/excel-vba-file-management-using-filesytemobject/ 21/21

You might also like