Beispiel #1
0
        private void WriteCurrentUsers()
        {
            try
            {
                byte[] buffer = Encoding.ASCII.GetBytes(LoggedInUsers[0].UserName + Environment.NewLine);
                UserFile = File.OpenWrite(fileDir);
                UserFile.Write(buffer, 0, buffer.Length);
                buffer = Encoding.ASCII.GetBytes("Test2");
                UserFile.Write(buffer, 0, buffer.Length);

            }
            catch (Exception)
            {


            }
            UserFile.Close();
        }
Beispiel #2
0
        public UserManager()
        {
            
            DirectoryPath = "Users";
            fileDir = DirectoryPath + "\\user.txt";

            if (!Directory.Exists(DirectoryPath))
            {
                Root = Directory.CreateDirectory(DirectoryPath);
            }

            //
            UserFile = File.Create(fileDir);
            UserFile.Close();
            LoggedInUsers = new List<Users>();
            Users usr = new Users();
            usr.UserName = "******";
            LoggedInUsers.Add(usr);
            
        }