Web Developer

2021-04-02 web-projects

Sharepoint .csv reader

Technologies: Vanilla JS
search or sort SharePoint directory tree stored in .csv file
search or sort SharePoint directory tree stored in .csv file

Description:

At first we get .csv file with directory structure with powerShell cmd, e.g.:

Get-ChildItem -Recurse 'Z:\' | Select-Object FullName, LastWriteTime | Export-Csv -path list_LastWriteTime.csv -noTypeInfo

CSV file is loaded by Javascript. Files can be sorted by name or lastModification date. Also search in files is possible.

WWW:

https://www.frymburk.com/projects/89_sharepoint_link/sharepoint_tree.html