Where does Chrome store cookies?

前端 未结 6 1135
执笔经年
执笔经年 2020-11-29 00:18

Let\'s say I set a cookie using the setcookie() function in PHP:

setcookie(\'name\',\'foo\',false,\'/\',false);

I

6条回答
  •  抹茶落季
    2020-11-29 00:39

    For Google chrome Version 56.0.2924.87 (Latest Release) cookies are found inside profile1 folder.

    If you browse that you can find variety of information.

    There is a separate file called "Cookies". Also the Cache folder is inside this folder.

    Path : C:\Users\user_name\AppData\Local\Google\Chrome\User Data\Profile 1

    Remember to replace user_name.

    For Version 61.0.3163.100
    Path : C:\Users\user_name\AppData\Local\Google\Chrome\User Data\Default

    Inside this folder there is Cookies file and Cache folder.

提交回复
热议问题