Subversion Repositories Code-Repo

Compare Revisions

No changes between revisions

Ignore whitespace Rev 33 → Rev 34

/SWAT DriveLogger/trunk/DriveLogger/AboutBox.cs
15,7 → 15,7
InitializeComponent();
this.Text = "Program Info";
this.labelProductName.Text = "SWAT DriveLogger";
this.labelVersion.Text = "Version 1.1";
this.labelVersion.Text = "Version 1.2";
this.labelCopyright.Text = "Copyright to Kevin Lee @ Virginia Tech";
this.labelCompanyName.Text = "Author: Kevin Lee";
this.textBoxDescription.Text = "This program has been written by Kevin Lee for use " +
/SWAT DriveLogger/trunk/DriveLogger/AboutBox.resx
133,8 → 133,8
n19RsKnwXbF2SVbpqrI3FfqVJVW7ahhrveqm1j9s1GuqaT7bKtdW2H60U7qrqPt0r2pfY//diTaTZk/+
OzV+2uEZGjP7Z32fkzD39HzzBUsXiSxuXfJtWebyeytDVp1e47J233rLDds2mWzestVk2/YdVjv373bd
c3Zf2P4HB3MO/TzSfkz8+IqT1qfOnUk+++v8pIval45eSbz67/qcmza37t6pv6d8/8TDvMdiT/Y/y3wh
8vLg6/y38u8ufGj6ZPr51dcF38N/Cvw69af1n+P//wANAA8013ReGAAAAAlwSFlzAAA45gAAOOYBk6jl
TAAANQ1JREFUeF7t3VePNEfVB3B/Bb4DQkJwbQkhhC+MxAUW2GCTjbGNeRzAgI0DmJxNzjnnnHMwyeSc
8vLg6/y38u8ufGj6ZPr51dcF38N/Cvw69af1n+P//wANAA8013ReGAAAAAlwSFlzAAA45QAAOOUBPhHE
IQAANQ1JREFUeF7t3VePNEfVB3B/Bb4DQkJwbQkhhC+MxAUW2GCTjbGNeRzAgI0DmJxNzjnnnHMwyeSc
c44m58y8/BqO33I9Hap7umerd7ek1e7OdFd31fnXyafqmGOOOWZz+HM4B//BwOEkHM5Bg4H/AuGwHcwZ
SBbBIRAOJgT+O+pDIBxk6idjPwTCIRAOOcIhBv5/Bg48R/jnP/+5+c1vfrP51re+tfn4xz+++cAHPrD5
2Mc+tvnmN7+5+d3vfndgsHJggPCvf/1r89WvfnXzvve9b/OqV71q87KXvWzzrGc9a/PYxz5288xnPnPz
/SWAT DriveLogger/trunk/DriveLogger/DriveLogger.csproj
73,6 → 73,12
<Compile Include="DriveDetector.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="LabelPrompt.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="LabelPrompt.Designer.cs">
<DependentUpon>LabelPrompt.cs</DependentUpon>
</Compile>
<Compile Include="MainForm.cs">
<SubType>Form</SubType>
</Compile>
84,6 → 90,9
<EmbeddedResource Include="AboutBox.resx">
<DependentUpon>AboutBox.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="LabelPrompt.resx">
<DependentUpon>LabelPrompt.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="MainForm.resx">
<DependentUpon>MainForm.cs</DependentUpon>
</EmbeddedResource>
/SWAT DriveLogger/trunk/DriveLogger/LabelPrompt.Designer.cs
0,0 → 1,87
namespace DriveLogger
{
partial class LabelPrompt
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
 
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
 
#region Windows Form Designer generated code
 
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.lbl_Prompt = new System.Windows.Forms.Label();
this.txt_Prompt = new System.Windows.Forms.TextBox();
this.btn_Prompt = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// lbl_Prompt
//
this.lbl_Prompt.AutoSize = true;
this.lbl_Prompt.Location = new System.Drawing.Point(37, 9);
this.lbl_Prompt.Name = "lbl_Prompt";
this.lbl_Prompt.Size = new System.Drawing.Size(81, 13);
this.lbl_Prompt.TabIndex = 0;
this.lbl_Prompt.Text = "Enter Drive Info";
//
// txt_Prompt
//
this.txt_Prompt.Location = new System.Drawing.Point(12, 25);
this.txt_Prompt.Name = "txt_Prompt";
this.txt_Prompt.Size = new System.Drawing.Size(130, 20);
this.txt_Prompt.TabIndex = 1;
//
// btn_Prompt
//
this.btn_Prompt.Location = new System.Drawing.Point(40, 51);
this.btn_Prompt.Name = "btn_Prompt";
this.btn_Prompt.Size = new System.Drawing.Size(75, 23);
this.btn_Prompt.TabIndex = 2;
this.btn_Prompt.Text = "Ok";
this.btn_Prompt.UseVisualStyleBackColor = true;
this.btn_Prompt.Click += new System.EventHandler(this.btn_Prompt_Click);
//
// LabelPrompt
//
this.AcceptButton = this.btn_Prompt;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(154, 86);
this.ControlBox = false;
this.Controls.Add(this.btn_Prompt);
this.Controls.Add(this.txt_Prompt);
this.Controls.Add(this.lbl_Prompt);
this.Name = "LabelPrompt";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Device Information";
this.TopMost = true;
this.ResumeLayout(false);
this.PerformLayout();
 
}
 
#endregion
 
private System.Windows.Forms.Label lbl_Prompt;
private System.Windows.Forms.TextBox txt_Prompt;
private System.Windows.Forms.Button btn_Prompt;
}
}
/SWAT DriveLogger/trunk/DriveLogger/LabelPrompt.cs
0,0 → 1,26
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
 
namespace DriveLogger
{
public partial class LabelPrompt : Form
{
public string driveLabel = "";
public LabelPrompt()
{
InitializeComponent();
}
 
private void btn_Prompt_Click(object sender, EventArgs e)
{
driveLabel = this.txt_Prompt.Text;
this.Close();
}
}
}
/SWAT DriveLogger/trunk/DriveLogger/LabelPrompt.resx
0,0 → 1,120
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
 
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>
/SWAT DriveLogger/trunk/DriveLogger/MainForm.cs
14,11 → 14,10
public struct DriveEntry
{
public DateTime time;
//public string status;
public string drive;
public string label;
//public string owner;
public string size;
public string owner;
}
public partial class MainForm : Form
{
33,6 → 32,7
driveDetector.DeviceArrived += new DriveDetectorEventHandler(driveDetector_DeviceArrived);
driveDetector.DeviceRemoved += new DriveDetectorEventHandler(driveDetector_DeviceRemoved);
this.listView_Drives.AfterLabelEdit += new LabelEditEventHandler(listView_Drives_AfterLabelEdit);
this.listView_Drives.Validating += new CancelEventHandler(listView_Drives_Validating);
 
this.KeyPreview = true;
this.KeyPress += new KeyPressEventHandler(MainForm_KeyPress);
42,18 → 42,20
sw.WriteLine("-- New Session Started --");
sw.WriteLine("Initializing form details");
}
// Adds columns to the listview in the form
//this.listView_Drives.Columns.Add("Event", 60, HorizontalAlignment.Center);
this.listView_Drives.Columns.Add("Owner", 150, HorizontalAlignment.Left);
this.listView_Drives.Columns.Add("Time", 125, HorizontalAlignment.Center);
this.listView_Drives.Columns.Add("Owner", 145, HorizontalAlignment.Left);
this.listView_Drives.Columns.Add("Time", 130, HorizontalAlignment.Center);
this.listView_Drives.Columns.Add("Drive", 40, HorizontalAlignment.Center);
this.listView_Drives.Columns.Add("Label", 109, HorizontalAlignment.Center);
this.listView_Drives.Columns.Add("Size", 60, HorizontalAlignment.Center);
//this.listView_Drives.Columns.Add("Owner", 95, HorizontalAlignment.Center);
 
paintDriveListbox();
}
 
void listView_Drives_Validating(object sender, CancelEventArgs e)
{
paintDriveListbox();
}
 
void listView_Drives_AfterLabelEdit(object sender, LabelEditEventArgs e)
{
if (e.Label != null)
87,8 → 89,7
foreach (DriveEntry entry in driveList)
{
ListViewItem item = new ListViewItem();
item.Text = "";
//item.Text = entry.time.ToString();
item.Text = entry.owner;
ListViewItem.ListViewSubItem subTime = new ListViewItem.ListViewSubItem();
subTime.Text = entry.time.ToString();
item.SubItems.Add(subTime);
101,9 → 102,6
ListViewItem.ListViewSubItem subSize = new ListViewItem.ListViewSubItem();
subSize.Text = entry.size;
item.SubItems.Add(subSize);
//ListViewItem.ListViewSubItem subOwner = new ListViewItem.ListViewSubItem();
//subOwner.Text = entry.owner;
//item.SubItems.Add(subOwner);
 
this.listView_Drives.Items.Add(item);
}
115,7 → 113,6
e.HookQueryRemove = true;
 
DriveEntry newEntry = new DriveEntry();
//newEntry.status = "Inserted";
newEntry.time = DateTime.Now;
newEntry.drive = e.Drive;
 
134,12 → 131,18
}
newEntry.label = tempDrive.VolumeLabel;
newEntry.size = (tempDrive.TotalSize / 1073741824).ToString() + " GB";
//newEntry.owner = "";
driveList.Add(newEntry);
 
if (newEntry.label != "System Reserved")
{
LabelPrompt label = new LabelPrompt();
label.ShowDialog();
newEntry.owner = label.driveLabel;
driveList.Add(newEntry);
}
 
using (StreamWriter sw = File.AppendText(logLocation))
{
sw.WriteLine("Drive Attached -- [" + newEntry.time.ToString() + "]\t" + newEntry.drive + "\t\"" + newEntry.label + "\"\t" + newEntry.size);
sw.WriteLine("Drive Attached -- [" + newEntry.time.ToString() + "]\t\"" + newEntry.owner + "\"\t" + newEntry.drive + "\t\"" + newEntry.label + "\"\t" + newEntry.size);
}
 
paintDriveListbox();
146,20 → 149,21
}
void driveDetector_DeviceRemoved(object sender, DriveDetectorEventArgs e)
{
DriveEntry entryToRemove = new DriveEntry();
//DriveEntry entryToRemove = new DriveEntry();
foreach (DriveEntry entry in driveList)
{
if (e.Drive == entry.drive)
{
entryToRemove = entry;
//entryToRemove = entry;
driveList.Remove(entry);
break;
}
}
driveList.Remove(entryToRemove);
//driveList.Remove(entryToRemove);
 
using (StreamWriter sw = File.AppendText(logLocation))
{
sw.WriteLine("Drive Removed -- [" + entryToRemove.time.ToString() + "]\t" + entryToRemove.drive + "\t\"" + entryToRemove.label + "\"\t" + entryToRemove.size);
//sw.WriteLine("Drive Removed -- [" + entryToRemove.time.ToString() + "]\t" + entryToRemove.drive + "\t\"" + entryToRemove.label + "\"\t" + entryToRemove.size);
}
 
paintDriveListbox();
/SWAT DriveLogger/trunk/DriveLogger/bin/Debug/DriveLogger.exe
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/SWAT DriveLogger/trunk/DriveLogger/bin/Debug/DriveLogger.pdb
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/SWAT DriveLogger/trunk/DriveLogger/bin/Release/DriveLogger.exe
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/SWAT DriveLogger/trunk/DriveLogger/bin/Release/DriveLogger.pdb
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/SWAT DriveLogger/trunk/DriveLogger/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/SWAT DriveLogger/trunk/DriveLogger/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/SWAT DriveLogger/trunk/DriveLogger/obj/x86/Debug/DriveLogger.AboutBox.resources
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/SWAT DriveLogger/trunk/DriveLogger/obj/x86/Debug/DriveLogger.csproj.FileListAbsolute.txt
18,3 → 18,14
C:\Users\Administrator\Documents\Visual Studio 2010\Projects\SWAT DriveLogger\DriveLogger\obj\x86\Debug\DriveLogger.Properties.Resources.resources
C:\Users\Administrator\Documents\Visual Studio 2010\Projects\SWAT DriveLogger\DriveLogger\obj\x86\Debug\GenerateResource.read.1.tlog
C:\Users\Administrator\Documents\Visual Studio 2010\Projects\SWAT DriveLogger\DriveLogger\obj\x86\Debug\GenerateResource.write.1.tlog
C:\Users\Kevin\Documents\Visual Studio 2010\Projects\SWAT DriveLogger\DriveLogger\obj\x86\Debug\DriveLogger.exe
C:\Users\Kevin\Documents\Visual Studio 2010\Projects\SWAT DriveLogger\DriveLogger\obj\x86\Debug\DriveLogger.pdb
C:\Users\Kevin\Documents\Visual Studio 2010\Projects\SWAT DriveLogger\DriveLogger\bin\Debug\DriveLogger.exe
C:\Users\Kevin\Documents\Visual Studio 2010\Projects\SWAT DriveLogger\DriveLogger\bin\Debug\DriveLogger.pdb
C:\Users\Kevin\Documents\Visual Studio 2010\Projects\SWAT DriveLogger\DriveLogger\obj\x86\Debug\ResolveAssemblyReference.cache
C:\Users\Kevin\Documents\Visual Studio 2010\Projects\SWAT DriveLogger\DriveLogger\obj\x86\Debug\DriveLogger.AboutBox.resources
C:\Users\Kevin\Documents\Visual Studio 2010\Projects\SWAT DriveLogger\DriveLogger\obj\x86\Debug\DriveLogger.LabelPrompt.resources
C:\Users\Kevin\Documents\Visual Studio 2010\Projects\SWAT DriveLogger\DriveLogger\obj\x86\Debug\DriveLogger.MainForm.resources
C:\Users\Kevin\Documents\Visual Studio 2010\Projects\SWAT DriveLogger\DriveLogger\obj\x86\Debug\DriveLogger.Properties.Resources.resources
C:\Users\Kevin\Documents\Visual Studio 2010\Projects\SWAT DriveLogger\DriveLogger\obj\x86\Debug\GenerateResource.read.1.tlog
C:\Users\Kevin\Documents\Visual Studio 2010\Projects\SWAT DriveLogger\DriveLogger\obj\x86\Debug\GenerateResource.write.1.tlog
/SWAT DriveLogger/trunk/DriveLogger/obj/x86/Debug/DriveLogger.exe
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/SWAT DriveLogger/trunk/DriveLogger/obj/x86/Debug/DriveLogger.pdb
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/SWAT DriveLogger/trunk/DriveLogger/obj/x86/Debug/GenerateResource.read.1.tlog
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/SWAT DriveLogger/trunk/DriveLogger/obj/x86/Debug/GenerateResource.write.1.tlog
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/SWAT DriveLogger/trunk/DriveLogger/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/SWAT DriveLogger/trunk/DriveLogger/obj/x86/Release/DriveLogger.AboutBox.resources
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/SWAT DriveLogger/trunk/DriveLogger/obj/x86/Release/DriveLogger.csproj.FileListAbsolute.txt
18,3 → 18,14
C:\Users\Administrator\Documents\Visual Studio 2010\Projects\SWAT DriveLogger\DriveLogger\obj\x86\Release\GenerateResource.write.1.tlog
C:\Users\Administrator\Documents\Visual Studio 2010\Projects\SWAT DriveLogger\DriveLogger\obj\x86\Release\DriveLogger.exe
C:\Users\Administrator\Documents\Visual Studio 2010\Projects\SWAT DriveLogger\DriveLogger\obj\x86\Release\DriveLogger.pdb
C:\Users\Kevin\Documents\Visual Studio 2010\Projects\SWAT DriveLogger\DriveLogger\bin\Release\DriveLogger.exe
C:\Users\Kevin\Documents\Visual Studio 2010\Projects\SWAT DriveLogger\DriveLogger\bin\Release\DriveLogger.pdb
C:\Users\Kevin\Documents\Visual Studio 2010\Projects\SWAT DriveLogger\DriveLogger\obj\x86\Release\ResolveAssemblyReference.cache
C:\Users\Kevin\Documents\Visual Studio 2010\Projects\SWAT DriveLogger\DriveLogger\obj\x86\Release\DriveLogger.AboutBox.resources
C:\Users\Kevin\Documents\Visual Studio 2010\Projects\SWAT DriveLogger\DriveLogger\obj\x86\Release\DriveLogger.LabelPrompt.resources
C:\Users\Kevin\Documents\Visual Studio 2010\Projects\SWAT DriveLogger\DriveLogger\obj\x86\Release\DriveLogger.MainForm.resources
C:\Users\Kevin\Documents\Visual Studio 2010\Projects\SWAT DriveLogger\DriveLogger\obj\x86\Release\DriveLogger.Properties.Resources.resources
C:\Users\Kevin\Documents\Visual Studio 2010\Projects\SWAT DriveLogger\DriveLogger\obj\x86\Release\GenerateResource.read.1.tlog
C:\Users\Kevin\Documents\Visual Studio 2010\Projects\SWAT DriveLogger\DriveLogger\obj\x86\Release\GenerateResource.write.1.tlog
C:\Users\Kevin\Documents\Visual Studio 2010\Projects\SWAT DriveLogger\DriveLogger\obj\x86\Release\DriveLogger.exe
C:\Users\Kevin\Documents\Visual Studio 2010\Projects\SWAT DriveLogger\DriveLogger\obj\x86\Release\DriveLogger.pdb
/SWAT DriveLogger/trunk/DriveLogger/obj/x86/Release/DriveLogger.exe
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/SWAT DriveLogger/trunk/DriveLogger/obj/x86/Release/DriveLogger.pdb
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/SWAT DriveLogger/trunk/DriveLogger/obj/x86/Release/GenerateResource.read.1.tlog
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/SWAT DriveLogger/trunk/DriveLogger/obj/x86/Release/GenerateResource.write.1.tlog
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/SWAT DriveLogger/trunk/DriveLogger.suo
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream