Skip to content
Nick Rau edited this page Nov 29, 2019 · 2 revisions

Welcome to the FilesToDBConverter wiki!

This C# Console Application will take a folder and upload it's files to a database you want. Folders you have within the main folder will be categories and the files within will be connected to those folders.

Version 1.0

NOTE: Folders are stored one layer deep. That means the folders directly in main folder will be stored as a Category. Also files that are not in a folder will not be picked up. This will be fixed in the next version.

The database

Folders are stored in TBL_Category. Contents:

  • Category ID
  • Category Name

Files are stored in TBL_File. Contents:

  • File ID
  • File Name
  • File Extention
  • File Path
  • File Connected Folder
Clone this wiki locally