private void archiveTrack()
        {
            //Stop vlc
            axVLC.stop();

            //Copy then delete directory or file from download dir to archive dir
            playableData tmpData = (playableData)lstPlayable.SelectedItem;

            if (tmpData != null)
            {
                tmpData.archiveFile();
            }
            updatePlayable();
        }