From c605df838c98f62d145c741c4c8fa2b9919990c9 Mon Sep 17 00:00:00 2001 From: Alexander Shostak Date: Sat, 1 Jun 2019 23:03:27 +0300 Subject: [PATCH] Update README.md --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d47218c..87fe525 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,9 @@ # VFS (Virtual File System) -Add Virtual File System support to your project. Implement Mods directory support in 2 lines of code +Add Virtual File System support to your project. Implement Mods directory support in 2 lines of code. +Virtually copies contents of any directory into any directory. Copied contents is available in read-only mode. + +## Example: +```delphi +VfsImport.MapModsFromListA('D:\Game', 'D:\Game\Mods', 'D:\Game\Mods\list.txt'); +VfsImport.RunVfs(VfsImport.SORT_FIFO); +```