How to determine how much space is used by TFS

I am trying to figure out how much space is used by TFS. Is there a simple free space check command in TFS?

There is also a way to poll TFS for the amount of remaining hard disk space and see when large changes or a large number of files were added and by whom during a given week or day?

+5
source share
1 answer

I am trying to figure out how much space TFS uses. Simple check command free space on TFS?

, . , , , db.

, , , ..

TFS , ?

TFS , . , - :

System.IO.DriveInfo

var drive = new DriveInfo("DRIVE_LETTER");
long freeSpace= drive.freeSpace;

(., ), , , , TFS API.

+5

All Articles