Skip to content
David Kittell
David Kittell

Application & System: Development / Integration / Orchestration

  • Services
    • Application Development
    • Online Application Integration
  • Code
  • Online Tools
  • Tech Support
David Kittell

Application & System: Development / Integration / Orchestration

Find Library Item Links In Content

Posted on May 31, 2014October 26, 2015 By David Kittell
SELECT c.[content_id]
	,c.[content_title]
	,c.[folder_id]
	,cft.[folder_name]
	,cft.FolderPath
	,cft.FolderIdPath
FROM [content] c
INNER JOIN [content_folder_tbl] cft ON c.folder_id = cft.folder_id
WHERE content_html LIKE '%uploadedFiles%'
Originally Posted on May 31, 2014
Last Updated on October 26, 2015
All information on this site is shared with the intention to help. Before any source code or program is ran on a production (non-development) system it is suggested you test it and fully understand what it is doing not just what it appears it is doing. I accept no responsibility for any damage you may do with this code.

Related

Code Ektron MSSQL MSSQL - Ektron MSSQL - Ektron 8.7 SQL

Post navigation

Previous post
Next post

Related Posts

Java – FRC – Limelight Vision – Basic Information Read

Posted on January 23, 2020March 9, 2020

The code below will help you to be able read basic information from your Limelight Vision camera. If you haven’t already read the documentation it’s a good idea to start there -> http://docs.limelightvision.io/en/latest/ Start with a new “Timed Robot” template project and add a few imports import edu.wpi.first.networktables.NetworkTable; import edu.wpi.first.networktables.NetworkTableEntry;…

Read More

Calculate Age

Posted on September 18, 2013October 26, 2015

public static Int32 GetAge(this DateTime dateOfBirth) { var today = DateTime.Today; var a = (today.Year * 100 + today.Month) * 100 + today.Day; var b = (dateOfBirth.Year * 100 + dateOfBirth.Month) * 100 + dateOfBirth.Day; return (a – b) / 10000; } var now = float.Parse(DateTime.Now.ToString("yyyy.MMdd")); var dob = float.Parse(dateOfBirth.ToString("yyyy.MMdd"));…

Read More

Get Source Code Line Count

Posted on March 12, 2015October 26, 2015

(dir -include *.cs,*.asmx, *.asp, *.aspx, *.asax, *.vb -recurse | select-string .).Count Originally Posted on March 12, 2015Last Updated on October 26, 2015 All information on this site is shared with the intention to help. Before any source code or program is ran on a production (non-development) system it is suggested…

Read More

Code

Top Posts & Pages

  • PowerShell - Rename Pictures to Image Taken
  • Front Page
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions

Recent Posts

  • Javascript – Digital Clock with Style
  • BASH – Web Ping Log
  • BASH – Picture / Video File Name Manipulation
  • Mac OSX Terminal – Create SSH Key
  • Bash – Rename Picture

Top Posts

  • PowerShell - Rename Pictures to Image Taken
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions
  • Open On Screen Keyboard (OSK)
  • SQLite - Auto-Increment / Auto Generate GUID
©2025 David Kittell | WordPress Theme by SuperbThemes