mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
64 lines
2.3 KiB
TypeScript
64 lines
2.3 KiB
TypeScript
//source -- https://msdn.microsoft.com/en-us/library/ebkhfaaz.aspx
|
|
|
|
|
|
//Generates a string describing the drive type of a given Drive object.
|
|
var showDriveType = (drive: Scripting.Drive) => {
|
|
switch (drive.DriveType) {
|
|
case Scripting.DriveTypeConst.Removable:
|
|
return 'Removeable';
|
|
case Scripting.DriveTypeConst.Fixed:
|
|
return 'Fixecd';
|
|
case Scripting.DriveTypeConst.Remote:
|
|
return 'Network';
|
|
case Scripting.DriveTypeConst.CDRom:
|
|
return 'CD-ROM';
|
|
case Scripting.DriveTypeConst.RamDisk:
|
|
return 'RAM Disk';
|
|
default:
|
|
return 'Unknown';
|
|
}
|
|
};
|
|
|
|
|
|
//Generates a string describing the attributes of a file or folder.
|
|
var showFileAttributes = (file: Scripting.File) => {
|
|
var attr = file.Attributes;
|
|
if (attr === 0) {
|
|
return 'Normal';
|
|
}
|
|
var attributeStrings: string[] = [];
|
|
if (attr & Scripting.FileAttribute.Directory) { attributeStrings.push('Directory'); }
|
|
if (attr & Scripting.FileAttribute.ReadOnly) { attributeStrings.push('Read-only'); }
|
|
if (attr & Scripting.FileAttribute.Hidden) { attributeStrings.push('Hidden'); }
|
|
if (attr & Scripting.FileAttribute.System) { attributeStrings.push('System'); }
|
|
if (attr & Scripting.FileAttribute.Volume) { attributeStrings.push('Volume'); }
|
|
if (attr & Scripting.FileAttribute.Archive) { attributeStrings.push('Archive'); }
|
|
if (attr & Scripting.FileAttribute.Alias) { attributeStrings.push('Alias'); }
|
|
if (attr & Scripting.FileAttribute.Compressed) { attributeStrings.push('Compressed'); }
|
|
return attributeStrings.join(',');
|
|
};
|
|
|
|
|
|
//source --https://msdn.microsoft.com/en-us/library/ts2t8ybh(v=vs.84).aspx
|
|
var showFreeSpace = (drvPath: string) => {
|
|
var fso = new ActiveXObject('Scripting.FileSystemObject');
|
|
var d = fso.GetDrive(fso.GetDriveName(drvPath));
|
|
var s = 'Drive ' + drvPath + ' - ';
|
|
s += d.VolumeName + '<br>';
|
|
s += 'Free Space: ' + d.FreeSpace / 1024 + ' Kbytes';
|
|
return (s);
|
|
};
|
|
|
|
|
|
//source -- https://msdn.microsoft.com/en-us/library/kaf6yaft(v=vs.84).aspx
|
|
var getALine = (filespec: string) => {
|
|
var fso = new ActiveXObject('Scripting.FileSystemObject');
|
|
var file = fso.OpenTextFile(filespec, Scripting.IOMode.ForReading, false);
|
|
|
|
var s = '';
|
|
while (!file.AtEndOfLine) {
|
|
s += file.Read(1);
|
|
}
|
|
file.Close();
|
|
return (s);
|
|
}; |