Message for Arvin on Doc Mgmt Database

  • Thread starter Thread starter Guest
  • Start date Start date
cont ....

But what I need to do is create a table for all documents in the folder
excluding the subdirectories.
 
Traversing the directory structure can only be accomplished by looking into
the subdirectories. You can eliminate the subdirectories by moving the files
into the main directory, and deleting the subdirectories. You can also run
an update query and eliminate the data in the field. For instance:

C:\Projects\CFCS\010607\
and:
C:\Projects\Data\

can be updated to:

C:\Projects\

with something like:

UPDATE TableName SET TableName.Path = Left([Path],12);
--
Arvin Meyer, MCP, MVP
Microsoft Access
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com
 
I realised the simplest thing would be to use your database and then
transfer the information.




Arvin Meyer said:
Traversing the directory structure can only be accomplished by looking into
the subdirectories. You can eliminate the subdirectories by moving the files
into the main directory, and deleting the subdirectories. You can also run
an update query and eliminate the data in the field. For instance:

C:\Projects\CFCS\010607\
and:
C:\Projects\Data\

can be updated to:

C:\Projects\

with something like:

UPDATE TableName SET TableName.Path = Left([Path],12);
--
Arvin Meyer, MCP, MVP
Microsoft Access
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com

scubadiver said:
cont ....

But what I need to do is create a table for all documents in the folder
excluding the subdirectories.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top